添加粘性页脚到片段

时间:2012-04-07 16:41:52

标签: android android-layout android-fragments

我正在尝试在片段布局中添加页脚。在将所有内容转换为片段之前,我的工作正常,现在页脚显示在列表片段上方,而不是下面:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
>
    <!-- Footer -->     
    <TextView 
            android:id="@+id/footer" 
            android:background="#919191"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            style="@style/Footer"
            android:layout_alignParentBottom="true"
         />
    <!-- Footer -->

    <fragment android:name="com.app.ListingFragment"
            android:id="@+id/fragmentListing"
            android:layout_width="fill_parent"  
            android:layout_height="fill_parent" 
            android:layout_above="@id/footer"
     />

 </LinearLayout>

<style name="Footer">
    <item name="android:textColor">#ffffff</item>
    <item name="android:padding">2dip</item>
    <item name="android:background">#919191</item>
</style>

1 个答案:

答案 0 :(得分:0)

LinearLayout不理解“layout_alignParentBottom”和“layout_above”。您应该删除它们,然后只使用片段交换TextView。

“layout_alignParentBottom”和“layout_above”仅适用于RelativeLayouts中嵌入的视图。