MVVMCross:如何将ImageView绑定到本地映像(保存在SD卡中)

时间:2016-04-11 07:52:43

标签: android binding xamarin mvvmcross

我想将我的ImageView控件绑定到我的属性URL(这是我的图像本地路径,如下所示:/storage/emulated/0/MyFolder/IMG_20160411_094834.JPEG

我尝试像这样绑定我的控件:

 <ImageView
    android:src="@android:drawable/ic_menu_gallery"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/ImagePreview"
    local:MvxBind="ImageUrl ImagePath" />

ImagePath是我的属性,但我无法使用此方法。

你能帮助我吗?

谢谢

1 个答案:

答案 0 :(得分:4)

您必须使用Mvx.MvxImageView

ImageView更改为Mvx.MvxImageView应该可以解决问题。

确保您已安装

在您的Android和核心项目中。