0

フラグメント レイアウトにフッターを追加しようとしています。すべてをフラグメントに変換する前にうまく機能していたものは、フッターが下ではなくリストフラグメントの上に表示されるようになりました:

<?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>
4

1 に答える 1

0

LinearLayout は、「layout_alignParentBottom」と「layout_above」を認識しません。それらを削除し、TextView をフラグメントと交換するだけです。

「layout_alignParentBottom」と「layout_above」は、RelativeLayouts に埋め込まれたビューでのみ機能します。

于 2012-04-07T17:55:18.693 に答える