我正在寻找可在我的Xamarin.Android
应用程序中使用的便携式裁剪图像活动。类似于用 Java 编写的这个:https ://github.com/lvillani/android-cropimage 。
我认为这对于那些没有实现默认com.android.camera.action.CROP
意图操作的 Android 设备是必要的。
try {
// Call the standard crop action intent (the user device may not support it).
Intent cropIntent = new Intent ("com.android.camera.action.CROP");
...
Activity.StartActivityForResult(cropIntent, ...);
} catch (ActivityNotFoundException ex) {
// Call a custom portable crop image activity here.
}
最后,是否有任何开放库可用于实现呈现的行为?