错误 - 找不到与给定名称匹配的资源(在'MvxItemTemplate'处,值为'@ layout/WorkViewItem')

llo*_*kes 3 android xamarin.android mvvmcross xamarin

我发布了这个问题,因为IT花了我两天的时间来解决这个问题.我认为其他人也可能会被它困住.所以在这里有解决方案可以帮助其他人.

WorkItemSelectionView.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/Lloyd.Droid"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="10dp">
    <TextView
        android:text="Tasks:"
        android:layout_width="fill_parent"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:layout_height="wrap_content"
        android:textStyle="bold" />
    <Mvx.MvxListView
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        local:MvxBind="ItemsSource WorkItems; ItemClick SelectionCommand"
        local:MvxItemTemplate="@layout/WorkItemView" />
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

WorkItemView.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/CCHQ.Droid"
    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="30dp"
        local:MvxBind="Text Name" />
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

无法使用错误消息进行编译:

No resource found that matches the given name (at 'MvxItemTemplate' with value '@layout/WorkViewItem')
Run Code Online (Sandbox Code Playgroud)

llo*_*kes 12

这里的问题是与

@layout/WorkItemView
Run Code Online (Sandbox Code Playgroud)

它需要

@layout/workitemview
Run Code Online (Sandbox Code Playgroud)

无论文件名如何,AKA资源名称都必须全部小写