我正在尝试编辑布局文件,以便两个按钮并排显示,而不是一个在另一个之上。以下是布局文件中的代码:
<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
?
谢谢!