我已閱讀了許多關於雙抽屜的帖子,但他們都沒有修復右抽屜切換問題。android雙抽屜:右抽屜切換
的Android雙抽屜佈局:
<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">
<!-- content here -->
<android.support.design.widget.NavigationView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="left"/>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer2"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="right"/>
</android.support.v4.widget.DrawerLayout>
在隨後主activitiy
DrawerLayout drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawerLayout, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawerLayout.addDrawerListener(toggle);
toggle.syncState();
只有一個左抽屜切換圖標。右側抽屜沒有一個。 ActionBarDrawerToggle不指定哪個抽屜。
當你向右滑動你的右抽屜沒有打開? –
刷卡可以打開右側抽屜。有時最好有一個切換圖標來告訴用戶有一個正確的抽屜。 – eastwater