关于 android:在 Xamarin 中缩放图像

Pinch zooming on an image in Xamarin

Xamarin 中,为图像启用双指缩放的最佳方法是什么?目前我只有一个 ImageView 有一个 Bitmap 图像作为图像。

我进行了一些研究,发现了一些示例,其中人们使用了其他一些库,但在我开始编写此代码之前,我希望获得一些关于在图像上启用双指缩放的最佳方法的建议。

那么,在 Android 中,特别是 Xamarin 中启用双指缩放的最佳方法是什么?

提前致谢


您可以使用 Monodroidtoolkit ScaleImageView 获得 ImageView 放大功能和放大图像的平移。

首先,使用此处的代码将 ScaleImageView.cs 类添加到您的项目中。

该工具包也有一个如何使用它的示例,基本上你添加一个这样的活动:

1
2
3
4
5
6
7
8
9
10
11
12
namespace Samples
{
    [Activity(Label ="My Activity")]
    public class ScaleImageActivity : Activity
    {
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            SetContentView(Resource.Layout.ScaleImage);
        }
    }
}

然后,通过使用以下 XML 创建布局来添加 ScaleImage.axml 布局:

1
2
3
4
5
6
7
8
9
10
11
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<com.refractored.monodroidtoolkit.ScaleImageView
  android:layout_width="fill_parent"
    android:layout_height="fill_parent"
  android:src="@drawable/seattle"
  android:id="@+id/AnimateImage">
</com.refractored.monodroidtoolkit.ScaleImageView>
</LinearLayout>

最后,在此示例中,它从可绘制文件夹中加载西雅图的图像,因此添加可以在此处找到的 seattle.jpg 图像

MonoDroidToolkit 有一个包含大量示例的项目,包括这个