2012-03-13 73 views
0

我有一個標題有兩個按鈕,一個文本一個按鈕左對齊,另一個右對齊。現在我想將這些按鈕之間的文字居中。我可以將所有內容垂直居中,但無法在按鈕之間水平居中文本。按鈕之間的中心文本

目前,它看起來像這樣

:B:文字:B:

這就是我想要

:B:文字:B:

+1

你能發表相關代碼的片段嗎? – Shaunak 2012-03-13 19:43:31

+0

我想要的只是按鈕1垂直居中並左對齊到父對齊,按鈕2垂直對齊並右對齊父對象。然後在這兩個按鈕之間水平和垂直居中的文本視圖。 – user1163392 2012-03-13 19:50:13

+0

使用相對佈局http://developer.android.com/resources/tutorials/views/hello-relativelayout.html – 2012-03-13 19:51:40

回答

2
<LinearLayout 
    android:id="@+id/header" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" > 

    <Button 
     android:id="@+id/button1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Button 1" /> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:gravity="center_horizontal" 
     android:layout_weight="1.0" 
     android:text="Some Text" /> 

    <Button 
     android:id="@+id/button2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Button 2" /> 
</LinearLayout> 
+0

不是button2的位置取決於textview的長度嗎? – user1163392 2012-03-13 19:54:38

+0

如果textview有一個佈局權重 – dldnh 2012-03-13 19:55:10

+0

是的,工作,謝謝 – user1163392 2012-03-13 19:57:22

1

這樣做你在找什麼。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/RelativeLayout1" 
android:layout_width="match_parent" 
android:layout_height="match_parent" > 

<Button 
    android:id="@+id/button1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:layout_centerVertical="true" 
    android:text="Button" /> 

<Button 
    android:id="@+id/button2" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentRight="true" 
    android:text="Button" android:layout_centerVertical="true"/> 

<TextView 
    android:id="@+id/textView1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_centerVertical="true" 
    android:layout_toLeftOf="@+id/button2" 
    android:layout_toRightOf="@+id/button1" 
    android:text="TextView" android:gravity="center"/> 

    </RelativeLayout>