gpt4 book ai didi

android - 在 Xamarin 中捏合缩放图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:43 26 4
gpt4 key购买 nike

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

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

那么,在 Android(尤其是 Xamarin)中启用图像缩放的最佳方式是什么?

提前致谢

最佳答案

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

首先,使用 the code from here 将 ScaleImageView.cs 类添加到您的项目中.

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

namespace Samples
{
[Activity(Label = "My Activity")]
public class ScaleImageActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.ScaleImage);
}
}
}

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

<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>

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

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

关于android - 在 Xamarin 中捏合缩放图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24351644/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com