安卓操作栏的行为很奇怪



我正在努力创建一个好看的SearchView。我使用了这个代码,并将其集成到我的DrawerLayout中。这是我主要活动的当前XML:`

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/app_bar_main"/>
<include layout="@layout/app_bar_main_search"
android:visibility="gone"/>
</RelativeLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:visibility="gone"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />
</android.support.v4.widget.DrawerLayout>

这是我的app_bar_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar android:id="@+id/toolbar"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
app:titleTextColor="@color/white"
android:layout_alignParentTop="true"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:theme="@style/AppTheme.AppBarOverlay"/>

我的app_bar_main_search.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar android:id="@+id/searchtoolbar"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
app:collapseIcon="@drawable/ic_arrow_left"
app:titleTextColor="@color/colorPrimary"
android:layout_alignParentTop="true"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/white"/>

我的main_layout.xml只是一个带有FAB和空constraintlayout的文件。

上面的代码可以工作,但主布局在操作栏下面,左上角的NavigationDrawer图标停止工作(除非我通过滑动取出NavigationDrawers,然后出于某种原因它又开始工作)。删除操作栏周围的RelativeLayout会使app_bar_main覆盖整个屏幕。为app_bar_main指定一个ID会使其完全为空,只是一种背景色。

我做错了什么?如何获取操作栏下方的主布局?

编辑:我用@FAT的答案打开了工具栏,但navigationdrawer图标仍然不起作用。这是相关代码:

drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.addDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
navigationView.getMenu().getItem(0).setChecked(true);

我尝试将syncState()添加到onPostCreate中,但这并没有改变任何内容。单击图标时也不会调用onOptionsItemSelected函数。

DrawerLayout最多应有两个视图。在DrawerLayout中,添加一个包含屏幕main内容的视图(抽屉隐藏时的主布局)和另一个包含navigation抽屉内容的视图。

参见文件

若要使用DrawerLayout,请将主content视图定位为宽度和高度为match_parent且没有的first子级layout_gravity>。在主要内容后添加drawers作为子视图适当地查看和设置layout_gravity。常用抽屉match_parent表示具有固定宽度的高度。

1。将您的main_layout保留在第一个直接子级RelativeLayout中。

2.将属性android:layout_below="@id/app_bar_main"添加到main_layout。

按如下方式更新布局XML:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
android:id="@+id/appbar" 
layout="@layout/app_bar_main"/>
<include layout="@layout/app_bar_main_search"
android:visibility="gone"/>
<include
layout="@layout/main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/appbar"/>
</RelativeLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:visibility="gone"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />
</android.support.v4.widget.DrawerLayout>

希望这将有所帮助~

相关内容

  • 没有找到相关文章

最新更新