さまざまな投稿を閲覧し続けていますが、すべての投稿でフッターが画面にとどまろうとしています。
しかし、フッターをすべてのページに表示したい。私のページにはスクロールがないものとあるものがあります。スクロールがあるときはいつでも、スクロールの下にフッターを表示したいと思います。どうすればそれができますか?
たとえば、次のページがあるとします。
<?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>
スクロールせずに見えるとは限らないフッターをこれに追加する良い方法は何ですか?
ありがとう!