我正在努力学习mvvmcross,我现在是新手。我开始观看N + 1天的MvvmCross视频系列,我被困在N = 2小猫和列表中。我将DownloadCashPlugin和FilePlugin添加到项目中并创建Mvx.MvxImageView,如视频所示,但是当我启动我的应用程序(模拟器和Android设备)时,一切都相同但图像未显示或未下载。我从Android清单打开权限,我的Android设备上有一个互联网连接。我很确定我会仔细关注视频,不要错过任何部分。 我使用的是Visual Studio 2013 Communtiy Edition,MvvmCross是最新更新版本。如果有人能帮我解决这个问题,我将很高兴。谢谢。
Item_Kitten.axml;
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Mvx.MvxImageView
android:layout_width="75dp"
android:layout_height="75dp"
android:layout_margin="10dp"
local:MvxBind="ImageUrl ImageUrl" />
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="40dp"
local:MvxBind="Text Name" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="30dp"
local:MvxBind="Text Price" />
</LinearLayout>
</LinearLayout>