我正在使用 MvvmCross 创建 PCL。在我的 Android 应用程序中,我创建了一个 mvx.mvxListView,它具有名为 itemc.axml 的 ItemTemplate。
文件 itemc.axml 在 Layout 文件夹中创建,但仍然出现此错误。
错误 - 找不到与给定名称匹配的资源(在“MvxItemTemplate”,值为“@layout/itemc”)

为什么?

我的FirstView.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/constD.Droid"
                    android:orientation="vertical"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent">
                    <Button
                             android:text="Show Constituencies"
                             android:layout_width="match_parent"
                             android:layout_height="wrap_content"
                             android:id="@+id/button1" />
                    <Mvx.MvxListView
                             android:layout_width="fill_parent"
                             android:layout_height="fill_parent"
                             local:MvxBind="ItemsSource Result"
                             local:MvxItemTemplate="@layout/itemc" />
             </LinearLayout>

我的 itemc.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="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" />
    </LinearLayout>

为什么会这样?

最佳答案

尝试将文件 itemc.axml 重命名为 Itemc.axml,看看是否有效

10-07 18:33