兩個按鈕側我有我的應用程序的簡單設計:(其我的第一次...;)) Android的佈局:有並排
所以,你可以看到它只是一個背景和兩個鈕釦。 (有2個更多的按鈕,目前它們並不重要)
所以,我不知道如何把它們放在另一個旁邊,他們所做的只是彼此重疊。我嘗試重量,但沒有奏效。
這是我axml文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
android:minWidth="25px"
android:minHeight="25px"
android:background="@drawable/background">
<Button
android:background="@drawable/startthehatching_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/StartButton" />
<Button
android:background="@drawable/stopthehatching_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/StopButton" />
<CheckBox
android:text="Pro Mode On"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/CheckBoxProMode" />
<Button
android:text="Help!"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/HelpButton" />
</LinearLayout>
我能不能得到一些幫助?它可能超級容易,但我是新來的:)
謝謝!
做出的LinearLayout水平的方向,因爲按鈕水平對齊 –
你可以嘗試的RelativeLayout代替的LinearLayout ..它好得多 –
這是在所有手機上看起來都一樣嗎? – user7285912