0
Visual Studio xamarinを使用してナビゲーションドロワーを作成しようとすると、次のエラーが発生します。私はアンドロイドサポートリポジトリをsdkを使ってインストールしました。また、nagetを使ってxamarin.android.v7、... v4などをインストールしました。Android用ナビゲーションドロワーの作成に失敗しました
以下のエラーを引き起こしたと思いますか?おかげ
に属性 'メニュー' が見つかりませんリソース識別子属性が見つかりませリソース識別子ん パッケージの 'layout_scrollFlags' 'Leftdrawerlayout.Leftdrawerlayout'
パッケージ 'Leftdrawerlayout.Leftdrawerlayout'
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="#33B86C"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:layout_width="match_parent">
<RelativeLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_height="match_parent"
android:layout_width="200dp"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:menu="@menu/menu" />
</android.support.v4.widget.DrawerLayout>
</LinearLayout>
あなたの投稿を編集して問題のコードを含めてください。 –
こんにちはペッター、私はコードを含めている。私はエラーが私のXMLファイルにあると思う。私の謝罪、私はコーディングで初心者です。ありがとう –