找不到属性' MvxBind'的资源标识符。在包' AndroidApp.Droid'

时间:2015-01-02 08:50:44

标签: android xamarin mvvmcross

解决方案运行正常,直到我将Menu添加到应用程序并构建,它给了我上面的错误。我的代码如下:

<?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/AndroidApp.Droid"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<!-- The main content view -->
   <FrameLayout
       android:id="@+id/content_frame"
       android:layout_width="match_parent"
       android:layout_height="match_parent" />
    <Mvx.MvxListView
       local:MvxBind="ItemsSource MenuItems; ItemClick SelectMenuItemCommand"
       local:MvxItemTemplate="@layout/item_menu"
       android:id="@+id/left_drawer"
       android:divider="@android:color/transparent"
       android:dividerHeight="0dp"
       android:choiceMode="singleChoice"
       android:layout_width="240dp"
       android:layout_height="match_parent"
       android:layout_gravity="start"
       android:background="#111" />
 </LinearLayout>

任何解决方案? 我试过了        1)xmlns:local =“http://schemas.android.com/apk/res/AndroidApp.Droid”和        2)xmlns:local =“http://schemas.android.com/apk/res-auto 但现在不行。 提前谢谢。

2 个答案:

答案 0 :(得分:4)

有些情况,有些引用没有正确,请清理并构建您的项目,如果仍然出现问题,请检查您的包名称。我希望这对你有用。

答案 1 :(得分:3)

Manifest的包名必须与

相同
xmlns:local="http://schemas.android.com/apk/res/Sample.Android"

enter image description here