我想在屏幕底部修复一个视图。我该怎么做?
答案 0 :(得分:4)
您可以创建覆盖整个屏幕的相对布局并使用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>
现在文本视图应该始终位于屏幕的底部。