我正在关注Android Programming: The Big Nerd Ranch Guide book 并且有一个非常新奇的问题:
在我的第一个名为 GeoQuiz 的应用程序中 - 如何将右侧按钮移动到屏幕的最右侧(并且仍然将按钮的大小保持在wrap_content
):
我的布局文件可以在 GitHub 中看到为activity_quiz.xml,这里是摘录:
<LinearLayout 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:gravity="center"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="de.afarber.geoquiz.QuizActivity" >
....
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/true_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/true_button" />
<Button
android:id="@+id/false_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/false_button" />
</LinearLayout>
....
</LinearLayout>