1

画面下部のビューを修正したいのですが、どうすればよいですか?

4

1 に答える 1

6

画面全体をカバーする相対レイアウトを作成し、layout_alignParentBottom="true"を使用できます。

<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

     <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/>

</RelativeLayout>

これで、テキストビューは常に画面の下部に表示されます。

于 2010-07-23T10:07:50.930 に答える