-1
我創建了滑動條菜單,但我遇到的問題是它不會滑動操作欄?Android DrawerLayout不滑動操作欄
它只滑動內容。
這裏是我的活動
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.me.ui.MainActivity">
<LinearLayout
android:id="@+id/container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
</LinearLayout>
</FrameLayout>
<ListView
android:id="@+id/side_menu"
android:layout_width="@dimen/slide_menu_width"
android:layout_height="fill_parent"
android:layout_gravity="start"
android:background="@android:color/black"
android:choiceMode="singleChoice"
android:divider="@null"></ListView>
</android.support.v4.widget.DrawerLayout>
也許不好的設計練習滑動操作欄? – jonney 2014-10-17 09:00:41
我不會稱之爲不好(或好)的設計,但這不是大多數用戶會期望的,因爲常見的行爲是不要滑動它 – fedepaol 2014-10-17 10:34:19