简体   繁体   中英

Android - Photos Crop Tool with different Aspect Ratio

I'm launching the Google Photos Crop tool using

String packageId = "com.google.android.apps.photos";
String action = "com.android.camera.action.CROP";

(If the app is not installed, I just launch any intent that can handle that action.

My problem is with this icon

在此处输入图片说明

When launching with this action, the icon is disabled, but if I use:

String packageId = "com.google.android.apps.photos";
String action = Intent.ACTION_EDIT;

Then the icon is enabled (but I get all other edit tools that I really don't need)

Is there any way to open only the CROP portion of the tool and have that icon enabled?

Thanks

I'm launching the Google Photos Crop tool using

That Intent action is undocumented, and there is no requirement for any particular app (including whatever "Google Photos" is) to offer support for it, now or in the future.

If the app is not installed, I just launch any intent that can handle that action

That Intent action is undocumented, and there is no requirement for any particular Android device to have an activity that supports it. Also, there is no documentation for what the effect is of starting such an activity.

When launching with this action, the icon is disabled

Perhaps, for the specific version of the specific app that you are working with. Future versions of this specific app may have different behaviors. Other apps will have different behaviors.

but if I use... Then the icon is enabled (but I get all other edit tools that I really don't need)

Perhaps, for the specific version of the specific app that you are working with. Future versions of this specific app may have different behaviors. Other apps will have different behaviors.

Is there any way to open only the CROP portion of the tool and have that icon enabled?

Probably not. Certainly, there is no documented way to control that, as the entire Intent action is undocumented.

There are many image cropping libraries available for Android . Please use one.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM