任何人都可以帮助我。我需要一个屏幕底部的按钮。对于相对布局布局,我可以使用
机器人:layout_alignParentBottom = “真”
但如果我使用线性布局,该怎么用。 请帮忙
答案 0 :(得分:1)
你可以尝试这样的事情
<?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">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1.0">
</LinearLayout>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button">
</Button>
</LinearLayout>
答案 1 :(得分:0)
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="bottom">
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button"/>
</LinearLayout>
答案 2 :(得分:-1)
在(LinearLayout)内使用(RelativeLayout),然后在(RelativeLayout)内添加(android:layout_alignParentBottom =“ true”)。