我想用自定義佈局創建導航抽屜(它已過時,我知道)。我正在使用NavDrawer中的一個片段來完成此操作。 我遇到的問題是,當我運行我的應用程序時,我的導航抽屜會自動打開,我無法關閉它/不知道如何。我懷疑它與片段事務結束時的.commit()
方法有關。片段導航抽屜初始化爲打開
所以我的問題是我如何獲得導航抽屜,住房片段,像普通導航抽屜一樣,只包含一個ListView,它可以拖入和拖出?或者,如果片段在導航抽屜中導致太多困難,那麼在導航抽屜內部還有另一種超級定製佈局的方式?提前致謝!
下面是它的樣子。代碼如下圖片...
在MapsActivity.java:
//Instantiates Fragment inside of our Nav Drawer
NavigationDrawerFragment navDrawerFragment = new NavigationDrawerFragment();
getFragmentManager().beginTransaction()
.add(R.id.navDrawer_container,
navDrawerFragment).addToBackStack(null).commit();
activity_maps.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"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF">
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorMapToolbar"
android:minHeight="?attr/actionBarSize"
app:contentInsetEnd="0dp"
app:contentInsetStart="0dp">
<!-- contentInsert is the initial padding that is added by the system at the start -->
<RelativeLayout
android:id="@+id/topLayout"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">
<ImageView
android:id="@+id/back_action"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="6dp"
android:layout_marginStart="6dp"
android:gravity="center_vertical"
android:padding="6dp"
android:src="@drawable/icon_goleft" />
<ImageView
android:id="@+id/locker"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_marginEnd="6dp"
android:layout_marginRight="6dp"
android:gravity="center_vertical"
android:padding="6dp"
android:src="@drawable/lock_open" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
<View
android:id="@+id/dropshadow"
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_marginTop="?attr/actionBarSize"
android:background="@drawable/dropshadow_dark" />
<ImageButton
android:id="@+id/floatingActionImageButton"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_margin="15dp"
android:background="@drawable/circle"
android:focusable="true"
android:src="@drawable/icon_location" />
<LinearLayout
android:id="@+id/markerLayout"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_alignParentBottom="true"
android:background="@color/colorMapToolbar"
android:orientation="horizontal"
android:weightSum="2">
<TextView
android:id="@+id/markerCancel"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="@string/cancel"
android:textColor="@android:color/white"
android:textSize="@dimen/abc_text_size_large_material" />
<TextView
android:id="@+id/markerMark"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="@string/mark"
android:textColor="@color/colorAccent"
android:textSize="@dimen/abc_text_size_large_material"
android:textStyle="bold" />
</LinearLayout>
</RelativeLayout>
<!-- FRAGMENT CONTAINER -->
<FrameLayout
android:id="@+id/navDrawer_container"
android:layout_width="240dp"
android:layout_height="match_parent" />
</android.support.v4.widget.DrawerLayout>
fragment_navigation_drawer.xml:(附有一個.java片段,但這裏沒有關係)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="200dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="2"
android:background="@android:color/white">
<RelativeLayout
android:id="@+id/topRowLayout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:padding="8dp">
<TextView
android:id="@+id/userTitleBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:padding="8dp"
android:text="@string/userTitle"
android:textStyle="bold" />
<TextView
android:id="@+id/alertTitleBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:padding="8dp"
android:text="@string/alertTitle"
android:textStyle="bold" />
<TextView android:id="@+id/lastFlamText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:gravity="center_horizontal"
android:text="@string/lastFlameTitle"
android:layout_below="@+id/userTitleBtn" />
<TextView
android:id="@+id/scoreTextNavDrawer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center_horizontal|bottom"
android:padding="16dp"
android:textSize="100sp"
android:textStyle="bold"
android:layout_below="@+id/lastFlamText" />
</RelativeLayout>
<ListView
android:id="@+id/navList"
android:layout_width="240dp"
android:layout_height="0dp"
android:layout_gravity="left|start"
android:layout_weight="1" />
</LinearLayout>