2012-09-05 103 views
1

我正在Android項目中對齊屏幕底部的2個按鈕。我正在使用無邊框主題,但我想在兩個按鈕之間進行分割,兩個區分它們。在Android上分離無邊框按鈕

下面是我目前有

Button style I currently have

的東西像默認的對話框截圖它顯示了一個淺灰色邊框,像下面的截圖上面的兩個按鈕並在它們之間,是這是一個特定的主題,或者是我需要做些什麼來獲得這個外觀。

Kind of button appearance I am after

感謝您的幫助,您可以提供

回答

0

嘗試是這樣的

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="@dimen/button_height" 
    android:orientation="horizontal" > 

    <Button /> 

    <View 
     android:layout_width="1dp" 
     android:layout_height="@dimen/button_height" 
     android:background="@color/seperator" /> 

    <Button /> 
</LinearLayout> 
0

嘗試使用與寬度1dip兩個按鈕之間的觀看

<Button 
     android:layout_width="wrap_content" 
     android:layout_height="60dip" 
     android:id="@+id/play" 
     android:text="PLAY" 
     /> 
    <View 
     android:id="@+id/vw" 
     android:layout_width="1dip" 
     android:layout_toRightOf="@+id/play" 
     android:background="#000000" 
     android:layout_height="60dip"/> 
    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="60dip" 
     android:layout_toRightOf="@+id/vw" 
     android:text="PLAY" 
     />