解决方案运行正常,直到我将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 但现在不行。 提前谢谢。