私のレイアウトを壊しているナビゲーション ドロワーを追加しようとしています。メイン レイアウトには、いくつかのボタン、編集テキスト ボックス、リストビューがあります。ドロワーにはリスト ビューもあります。ドロワーを追加すると、メイン レイアウトのリストビューが灰色になり、画面全体を占有します。ただし、引き出しは期待どおりに機能します。
ここに私のレイアウトファイルがあります:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="1000dp"
android:id="@+id/drawer_layout"
tools:context=".Departures"
android:weightSum="3" >
<!-- The main content view -->
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="12dp"
android:layout_marginTop="12dp"
android:gravity="center_horizontal"
android:text="@string/activity_departures"
android:textSize="24sp" />
<TextView
android:id="@+id/div_bar_1"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_marginBottom="7dp"
android:background="#666666"
android:text="@string/empty" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/terminal_1_btn"
style="@style/navigation_btn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="5dp"
android:layout_weight="1.5"
android:background="@drawable/navigation_btn"
android:minHeight="2dp"
android:text="@string/terminal_1_btn" />
<Button
android:id="@+id/terminal_2_btn"
style="@style/navigation_btn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="10dp"
android:layout_weight="1.5"
android:background="@drawable/navigation_btn"
android:minHeight="2dp"
android:text="@string/terminal_2_btn" />
</LinearLayout>
<TextView
android:id="@+id/div_bar_2"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginBottom="7dp"
android:layout_marginTop="7dp"
android:background="#999999"
android:text="@string/empty" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button1"
style="@style/navigation_btn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:background="@drawable/navigation_btn"
android:minHeight="2dp"
android:text="@string/today_btn" />
<Button
android:id="@+id/button2"
style="@style/navigation_btn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_weight="1"
android:background="@drawable/navigation_btn"
android:minHeight="2dp"
android:text="@string/tomorrow_btn" />
<Button
android:id="@+id/button3"
style="@style/navigation_btn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_weight="1"
android:background="@drawable/navigation_btn"
android:minHeight="2dp"
android:text="@string/variable" />
</LinearLayout>
<TextView
android:id="@+id/div_bar_3"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginBottom="7dp"
android:layout_marginTop="7dp"
android:background="#999999"
android:text="@string/empty" />
<EditText
android:id="@+id/searchFlights"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:hint="@string/search_flights"
android:inputType="text"
android:textSize="14sp" />
<TextView
android:id="@+id/div_bar_2"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginBottom="7dp"
android:layout_marginTop="7dp"
android:background="#999999"
android:text="@string/empty" />
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>
<!-- The navigation drawer -->
<include layout="@layout/navigation_drawer" />
</android.support.v4.widget.DrawerLayout>
インクルード ファイル:
<!-- The navigation drawer -->
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/left_drawer"
android:layout_width="160dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#fff"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" >
引き出しリスト項目:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_list_item"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:gravity="center_vertical"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:textColor="#000"
android:background="?android:attr/activatedBackgroundIndicator"
android:minHeight="?android:attr/listPreferredItemHeightSmall"/>
ルート要素の高さ (1000 dp) は、エミュレーターでの表示の問題に対処するためだけのものです。ヘルプ!私はこれに何時間も立ち往生しています...