我想修复屏幕底部的视图。我该怎么做?
问问题
1524 次
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 回答