mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
Merge "Refactoring startShareActivity to allow crop to be passed in."
This commit is contained in:
committed by
Android (Google) Code Review
commit
6d0d3b514a
@@ -83,8 +83,8 @@ public class ImageActionsApi {
|
||||
* Share the image this api was constructed with.
|
||||
*/
|
||||
@UiThread
|
||||
public void startShareActivity() {
|
||||
ImageActionUtils.startShareActivity(mContext, mBitmapSupplier, null, null, TAG);
|
||||
public void startShareActivity(Rect crop) {
|
||||
ImageActionUtils.startShareActivity(mContext, mBitmapSupplier, crop, null, TAG);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -159,7 +159,7 @@ public class TaskOverlayFactory implements ResourceBasedOverride {
|
||||
@Override
|
||||
public void onShare() {
|
||||
if (isAllowedByPolicy) {
|
||||
endLiveTileMode(mImageApi::startShareActivity);
|
||||
endLiveTileMode(() -> mImageApi.startShareActivity(null));
|
||||
} else {
|
||||
showBlockedByPolicyMessage();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user