我试图在我的碎片布局中增加一个脚步。 在我把所有东西转换成碎片之前,我做了一些细微的工作,现在脚步显示在列名的碎片上,而不是以下。
<?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>