我想在線性佈局中製作頁腳,但是這種佈局我也使用了片段tag.anyone幫助我如何在此佈局中設置頁腳。我看到很多示例,但是我沒有找到成功的例子。如何在android中的線性佈局中製作頁腳
我的XML: -
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<fragment
android:id="@+id/list_Fragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
class="shoppingmazza.android.catalyst.com.shoppingmazza.activity.ListFragment" >
</fragment>
<fragment
android:id="@+id/detail_Fragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
class="shoppingmazza.android.catalyst.com.shoppingmazza.activity.DetailFragment" >
</fragment>
</LinearLayout>
<RelativeLayout
android:id="@+id/footer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#eee">
<TextView
android:id="@+id/cart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/filter"
android:textSize="20sp"
android:padding="10dp"
android:textColor="#FF0000"
android:layout_alignParentBottom="true"/>
<TextView
android:id="@+id/buy_now"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/clear_all"
android:padding="10dp"
android:textSize="20sp"
android:textColor="#FF0000"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
<Space
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"/>
</LinearLayout>
我在新開發Android,請我!提前致謝!
您可以使用另一個LinearLayout作爲頁腳,頁腳僅引用listview。 – Nanoc
你能舉一個例子嗎 –
你真的需要一個在xml上創建linearLayout的例子,你已經發布了一個例子! – Nanoc