0

我正在寻找可在我的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.
}

最后,是否有任何开放库可用于实现呈现的行为?

4

1 回答 1

3

是的,有一个(免责声明:作者在这里)

裁剪图像-xamarin

于 2014-03-20T21:18:40.603 回答