Я пытаюсь связать веб-образ в списке на Android, используя Xamarin.Android и mvvmcross. Однако я получаю эту ошибку.Ошибка MvvmCross MvxHttpImageView
MvxBind: Ошибка: 7,13 Просмотр типа не найден - Mvx.MvxHttpImageView Android.Views.InflateException: Binary XML файл строка # 1: Ошибка при наполнении класса Mvx.MvxHttpImageView
Это мой 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/com.mynamespace.android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Mvx.MvxHttpImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/iconeView"
local:MvxBind="{'HttpImageUrl':{'Path':'imageUrl'}}" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="30dp"
local:MvxBind="Text name" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="10dp"
local:MvxBind="Text tagline" />
</LinearLayout>
также старый синтаксис json по умолчанию отключен в v3 - поэтому этот синтаксис не будет работать локально: MvxBind = "{'HttpImageUrl': {'Path': 'imageUrl'}}" – Stuart