我正在尝试编辑布局文件,以便两个按钮并排显示,而不是一个在另一个上面。以下是布局文件中的代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="225dp"
android:layout_height="wrap_content"
android:background="@color/dark_yellow"
android:orientation="vertical"
android:padding="12dip" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:paddingBottom="12dip"
android:text="@string/dialog_text"
android:textColor="@color/light_yellow"
android:textSize="@dimen/font_medium" />
<Button
android:id="@+id/btn_go_to_new_App"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="Go"
android:text="@string/btn_go" />
<Button
android:id="@+id/btn_stay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="stay"
android:text="@string/btn_stay_at_lifecycle" />
</LinearLayout>
目前,
btn_go
出现在btn_stay_at_lifecycle
上方。我需要做什么才能使btn_stay_at_lifecycle
出现在btw_go
的右侧?谢谢!
最佳答案
试验
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="225dp"
android:layout_height="wrap_content"
android:background="@color/dark_yellow"
android:orientation="vertical"
android:padding="12dip" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:paddingBottom="12dip"
android:text="@string/dialog_text"
android:textColor="@color/light_yellow"
android:textSize="@dimen/font_medium" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:id="@+id/btn_go_to_new_App"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:onClick="Go"
android:text="@string/btn_go" />
<Button
android:id="@+id/btn_stay"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:onClick="stay"
android:text="@string/btn_stay_at_lifecycle" />
</LinearLayout>
</LinearLayout>