我一直在浏览不同的帖子,他们都有页脚试图留在屏幕上。
但我希望页脚出现在每一页上。我的一些页面没有卷轴,但有些页面有。每当有滚动时,我希望页脚出现在滚动下方。怎么可能呢?
例如,如果我有这个页面:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/page_exlain"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Some text that either extends far down or is pretty short."
android:layout_marginTop ="20dp"
/>
</LinearLayout>
</ScrollView>
</LinearLayout>
什么是添加页脚的好方法不一定出现在首屏上方?
谢谢!