我创建了抽屉菜单: drawer menu. 正如您所看到的,我设法完美地显示了抽屉,但是当我包含activity_main.xml时,它没有获取数据(变量和放置器)
my main_activity.xml:how it looks, TextView should be numbers and placeholder not getting any data 所以... drawer_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:openDrawer="end"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<include
layout="@layout/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_container"
/>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/drawer_menu" />
</android.support.v4.widget.DrawerLayout>
我需要显示数据并仍然使用抽屉......是否可能?如果您需要更多信息,请询问,我会提供
编辑:我需要将MainActivity.class(连接到activity_main.xml)的信息传递给Drawer_layout.class? (连接到drawer_layout.xml)
答案 0 :(得分:0)
没关系,我设法自己做。如果其他人有这个问题: include标签是,它没有显示或使用你的活动(在我的例子中,MainActivity.class),所以我做的是将activity_main.xml从RelativeLayout更改为DrawerLayout,不需要在单独的层中。 如你所见:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:background="@color/background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/mainactivity"
android:paddingLeft="@dimen/mainactivity"
android:paddingRight="@dimen/mainactivity"
android:paddingTop="@dimen/mainactivity"
android:fitsSystemWindows="true"
tools:openDrawer="end"
tools:context=".MainActivity">
<!-- app code -->
<LinearLayout...>
<!-- navigation drawer -->
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:menu="@menu/navigation_menu"
android:layout_gravity="end"
android:fitsSystemWindows="true"
ads:headerLayout="@layout/navigation_header"
>
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
如果您有一个现有项目并且需要添加导航抽屉,它将完美运行。手动完成所有事情,它比向导更好。
然后在MainActivity.class中我像往常一样引用导航
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_info) {
startActivity(aboutact);
} else if (id == R.id.nav_appinfo) {
startActivity(appinfact);
} else if (id == R.id.nav_contact) {
startActivity(contactact);
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.activity_main);
drawer.closeDrawer(GravityCompat.END);
return true;
}
当然你还需要menu
pacakge中的navigation_menu.xml ...
我不想使用actionBar,你可以看到,没有工具栏,没有。所以我从点击按钮开始抽屉:
mDrawerLayout = (DrawerLayout) findViewById(R.id.activity_main);
hamburgerbutton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mDrawerLayout.openDrawer(GravityCompat.END);
}
});
问候。