android在屏幕最下方,如何将view固定在屏幕底部?
答:Janusz
(最佳答案)
我認為你可以試試RelativeLayout.,這樣你可以用android:layout_alignParentBottom將button移動到屏幕底部。如果在Relative Layout中,底部沒有顯示相關內容,或許就是在它之前的layout占據了整個屏幕。如果出現這種情況,你可以最先在layout文件夾中設定view的位置,然后用android:layout_above將其它的內容設置在view之上。這樣,底部的view可以占據更多的空間,layout中其它的內容也可以充分顯示。
答:Bram Avontuur
在ScrollView中,這種方法不起作用,因為無論ScrollView是否置于底部,RelativeLayout都會重疊。所以,我選擇FrameLayout來進行固定:
android:layout_height="fill_parent" android:layout_width="fill_parent"
android:fillViewport="true">
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical">
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_weight="1">
答:pseudosudo
你可以在Linear Layout中新建RelativeLayout:
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:id="@+id/TextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
android:layout_width="match_parent"
android:layout_height="match_parent">
android:id="@+id/Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/Button"
android:layout_alignParentBottom="true">
答:Timores
Janusz的答案很正確,但是我覺得用RelativeLayouts并不是最佳選擇,所以我介紹一種“filler”方法,將TextView設定為空白:
android:layout_width="fill_parent"
android:layout_weight="1" />
總結
以上是生活随笔為你收集整理的android在屏幕最下方,如何将view固定在屏幕底部?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 手机怎么查银行卡记录 查询只需6个步骤
- 下一篇: 手机提示存在支付风险是什么意思