所以我有一個問題位置在同一直線上的三個項目爲我的Android應用程序正確定位三個項目。起初讓我告訴你什麼,我有一個截圖:Android的佈局,我不能在同一行
我在這裏的問題是,我想兩個圖像按鈕是行之和爲最左邊和最右邊大文本留在中心。
我曾嘗試沒有成功相對佈局,我也試過安卓重力每個項目,但它也不起作用。
這裏是XML我的佈局:提前
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center" >
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/settings" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@color/black" />
<ImageButton
android:id="@+id/imageButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
</LinearLayout>
</LinearLayout>
謝謝!
具有u試圖用設置圖像按鈕和其他意見的嚴重性? – sampathpremarathna 2012-07-17 08:25:18
首先,您想要與哪個佈局一起使用?我會建議你兩個。 – 2012-07-17 08:26:30
我確實已經嘗試過重力,只要它是「最佳實踐」之一,我就不會在乎它的佈局;)。感謝大家花時間回覆! – 2012-07-17 08:57:10