我想在我的Android Studio应用程序中使用汉堡,我正在尝试遵循此教程:https://github.com/codepath/android_guides/android_guides/wiki/片段游动抽屉
,在我的 activity_main.xml
文件中,我有一个错误:
Android resource linking failed
E:SmoozyDocumentsFindcontentappsrcmainreslayoutactivity_main.xml:76:
error: resource menu/drawer_view (aka com.example.findcontent:menu/drawer_view) not found.
error: failed linking file resources.
这是我的文件目录:https://i.stack.imgur.com/zd4z9.jpg
我的drawer_view.xml
在我的布局文件夹中,我尝试从app:menu="@menu/drawer_view"/>
代码语句中删除"菜单"。
<!-- This DrawerLayout has two children at the root -->
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The navigation drawer that comes from the left -->
<!-- Note that `android:layout_gravity` needs to be set to 'start' -->
<android.support.design.widget.NavigationView
android:id="@+id/nvView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:layout_weight="1"
android:background="@android:color/white"
app:menu="@menu/drawer_view"/>
<!-- This LinearLayout represents the contents of the screen -->
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- The ActionBar displayed at the top -->
<include
layout="@layout/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<!-- The main content view where fragments are loaded -->
<FrameLayout
android:id="@+id/flContent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
</android.support.v4.widget.DrawerLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
这是试图达到的代码:
public void selectDrawerItem(MenuItem menuItem) {
// Create a new fragment and specify the fragment to show based on nav item clicked
Fragment fragment = null;
Class fragmentClass;
switch(menuItem.getItemId()) {
case R.id.nav_first_fragment:
fragmentClass = FirstFragment.class;
getSupportFragmentManager().beginTransaction().replace(R.id.flContent, new FirstFragment()).commit();
break;
case R.id.nav_second_fragment:
fragmentClass = SecondFragment.class;
getSupportFragmentManager().beginTransaction().replace(R.id.flContent, new SecondFragment()).commit();
break;
case R.id.nav_third_fragment:
fragmentClass = ThirdFragment.class;
getSupportFragmentManager().beginTransaction().replace(R.id.flContent, new ThirdFragment()).commit();
break;
default:
fragmentClass = FirstFragment.class;
}
try {
fragment = (Fragment) fragmentClass.newInstance();
} catch (Exception e) {
e.printStackTrace();
}
// Insert the fragment by replacing any existing fragment
FragmentManager fragmentManager = getSupportFragmentManager();
fragmentManager.beginTransaction().replace(R.id.flContent, fragment).commit();
// Highlight the selected item has been done by NavigationView
menuItem.setChecked(true);
// Set action bar title
setTitle(menuItem.getTitle());
// Close the navigation drawer
mDrawer.closeDrawers();
}
// ...
谢谢!
我认为您需要在目录"菜单"中移动" drawer_view.xml"文件,但是您没有一个。因此,只需创建一个。新 ->新资源目录,选择资源类型菜单,然后按" OK"。正常您将看到一个菜单文件夹
转到res,然后右键单击new> android Resources目录OK
命名:菜单
转到可绘制的并将文件" drawer_view.xml"剪切到菜单文件夹
并更改代码中的路径。
希望帮助您。