我正在尝试为我的片段布局添加页脚。在将所有内容转换为片段之前,我工作得很好,现在页脚显示在列表片段上方,而不是下方:
<?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>