0
我想提高我的抽屜佈局,我會做與頭(圖片和文字)和列表視圖抽屜,但我不能這樣做。Android的抽屜多圖佈局
這是我的佈局:
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/navdrawer"
android:layout_width="230dp"
android:layout_height="wrap_content"
android:layout_gravity="start"
android:background="@color/com_facebook_blue"
android:choiceMode="singleChoice"
android:divider="@android:color/holo_red_dark"
android:dividerHeight="2dp">
</ListView>
<LinearLayout
android:id="@+id/bottom_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/sfondo_list_quattro"
android:orientation="vertical">
<include
android:id="@+id/header"
layout="@layout/listview_header"/>
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="300px"
android:layout_gravity="center"
android:layout_height="wrap_content"/>
<ListView
android:id="@+id/postListView"
android:layout_width="fill_parent"
android:paddingTop="50px"
android:layout_height="0dip"
android:layout_weight="1"
android:layout_marginBottom="20dp"
android:scrollbars="vertical"
android:divider="@android:color/holo_red_dark"
android:layout_marginTop="20dp"
android:background="@drawable/selector"
android:dividerHeight="3dp">
</ListView>
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
可以做到這一點whitout片段?
謝謝你們,有一個美好的一天。
感謝您的回答,我編輯了我的帖子。 – KPN24