我做了一個活動,其中包含一個ListView和一個片段(帶有DrawerLayout)。片段上的DrawerLayout隱藏ListView
Activity.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ddffff"
>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/lista"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true" />
<fragment
android:id="@+id/fragment1"
android:name=".Fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
ListView中不會出現。我認爲listview是隱藏的,因爲這個片段。我不知道爲什麼。
全屏顯示listview和fragment。該片段位於頂部,因此它覆蓋了列表視圖。你想如何將listview和fragment定位在屏幕上? – Francesc
我想讓listview放在drawerlayout後面。像這樣:http://blog.teamtreehouse.com/wp-content/uploads/2015/02/nav_drawer_final.gif – tomss