如何在android中的线性布局中制作页脚

时间:2015-11-03 11:00:44

标签: android android-linearlayout

我想在线性布局中设置页脚,但是这个布局我也使用片段标签。有人如何在这个布局中设置页脚?我见过很多例子,但我没有找到成功。

我的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开发中的新手请给我!提前谢谢!

2 个答案:

答案 0 :(得分:3)

我编辑了你的XML。

让我知道你的要求?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        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>

    <LinearLayout
        android:id="@+id/footer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#eee" >

        <TextView
            android:id="@+id/cart"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:padding="10dp"
            android:text="Filter"
            android:textColor="#FF0000"
            android:textSize="20sp" />

        <TextView
            android:id="@+id/buy_now"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:padding="10dp"
            android:text="Clear All"
            android:textColor="#FF0000"
            android:textSize="20sp" />
    </LinearLayout>

</LinearLayout>

答案 1 :(得分:-1)

我不知道你在片段中对那些layout_weights做了什么,但这应该让你接近你想要的东西(我假设你希望这两个片段并排显示)侧):

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <fragment
            android:id="@+id/list_Fragment"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.5"
      class="shoppingmazza.android.catalyst.com.shoppingmazza.activity.ListFragment" />

        <fragment
            android:id="@+id/detail_Fragment"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.5"
           class="shoppingmazza.android.catalyst.com.shoppingmazza.activity.DetailFragment" />

    </LinearLayout

    <RelativeLayout
        android:id="@+id/footer"
        android:layout_width="match_parent"
        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>

</LinearLayout>