试图添加一个破坏了我的布局的导航抽屉。主布局有一些按钮、一个编辑文本框和一个列表视图。抽屉也有一个列表视图。当我添加抽屉时,主布局上的 Listview 呈现灰色并占据整个屏幕。然而,抽屉按预期工作。
这是我的布局文件:
<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"/>
根元素的高度 (1000dp) 仅用于解决模拟器上的显示问题。帮助!我被困在这几个小时...