如何将按钮对齐到嵌套线性布局中的屏幕底部
这个问题在这里已经有了答案:
使用此代码来解决您的问题
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="40dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="50dp"
android:orientation="horizontal"
android:weightSum="2">
<Button
android:id="@+id/radio0"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_weight="1" />
<Button
android:id="@+id/radio1"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2">
<Button
android:id="@+id/radio2"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_weight="1" />
<Button
android:id="@+id/radio3"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_weight="1"
android:text="Android" />
</LinearLayout>
</LinearLayout>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="60dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_gravity="bottom"
android:background="#0000FF"
android:onClick="NextQuestion"
android:text="Next"
android:textColor="#FFFFFF" />
</RelativeLayout>
你可以使用RelativeLayout,然后将Button相对于它。 以下是您的案例。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
tools:context="com.crackit.crackit.startQuiz1">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="40dp"/>
<LinearLayout
android:layout_marginTop="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_gravity="center_horizontal"
android:weightSum="2">
<Button
android:id="@+id/radio0"
android:layout_weight="1"
android:layout_height="140dp"
android:layout_width="140dp"
/>
<Button
android:id="@+id/radio1"
android:layout_weight="1"
android:layout_height="140dp"
android:layout_width="140dp"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2">
<Button
android:id="@+id/radio2"
android:layout_weight="1"
android:layout_height="140dp"
android:layout_width="140dp"
/>
<Button
android:id="@+id/radio3"
android:text="Android"
android:layout_weight="1"
android:layout_height="140dp"
android:layout_width="140dp"
/>
</LinearLayout>
</LinearLayout>
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="#0000FF"
android:onClick="NextQuestion"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:textColor="#FFFFFF"
android:text="Next" />
</RelativeLayout>
如果您希望按钮对齐到右侧,请将其宽度属性更改为
android:layout_width="wrap_content"
然后在第二个线性布局中添加属性'gravity':像这样 -
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="right"
android:layout_gravity="center"
android:orientation="vertical" >
如果您必须使用线性布局,请在按钮之前包含另一个空的线性布局,重量为1以用尽剩余空间。 (所以那个按钮就在底部)像这样 -
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
链接地址: http://www.djcxy.com/p/93205.html
上一篇: How to align button to bottom of screen in Nested Linear Layouts