2015-02-23 160 views
1

我需要在左上角和右上角放置兩個按鈕。但是我得到了左邊角落的兩個按鈕。我如何糾正代碼?請幫忙。屏幕角落的按鈕

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" > 

     <Button 
      android:id="@+id/back_button" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:gravity="left" 
      android:background="@drawable/new_back_button" 
      android:contentDescription="@string/LeaveReq_back_button" /> 

     <Button 
      android:id="@+id/logout_button" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:background="@drawable/logout" 
      android:contentDescription="@string/logout_button" 
      android:gravity="right" /> 
</LinearLayout> 
+0

查看我的回答低於 – 2015-02-23 10:25:58

回答

2

如果您想使用的LinearLayout的子視圖(按鈕)的父母,並希望有在雙面角落都按鈕,然後像下面代碼更新:

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" > 
    <Button 
     android:id="@+id/back_button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:gravity="left" 
     android:text="@string/hello_world" 
     android:contentDescription="LeaveReq_back_button" /> 
    <View android:layout_height="wrap_content" 
     android:layout_width="wrap_content" 
     android:layout_weight="1"/> 
    <Button 
     android:id="@+id/logout_button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:contentDescription="logout_button" 
     android:gravity="right" /> 
</LinearLayout> 

如果允許使用的LinearLayout到RelativeLayout的更新父那麼你可以像下面這樣更新它:

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

<Button 
    android:id="@+id/back_button" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentStart="true" 
    android:layout_alignParentTop="true" 
    android:background="@drawable/new_back_button" 
    android:contentDescription="@string/LeaveReq_back_button" /> 

<Button 
    android:id="@+id/logout_button" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignBaseline="@+id/back_button" 
    android:layout_alignParentEnd="true" 
    android:layout_alignParentTop="true" 
    android:background="@drawable/logout" 
    android:contentDescription="@string/logout_button" /> 
</RelativeLayout> 

現在它取決於你,你如何使用它。

享受編碼... :)

+0

@VeronikaGilbert歡迎 – 2015-02-23 10:41:11

0

隨着LinearLayout,視圖彼此相鄰取決於放置在其定向

您可以使用RelativeLayoutalign_parent實現佈局

下面是一個例子:

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

<Button 
    android:id="@+id/back_button" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentStart="true" 
    android:layout_alignParentTop="true" 
    android:background="@drawable/new_back_button" 
    android:contentDescription="@string/LeaveReq_back_button" /> 

<Button 
    android:id="@+id/logout_button" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignBaseline="@+id/back_button" 
    android:layout_alignParentEnd="true" 
    android:layout_alignParentTop="true" 
    android:background="@drawable/logout" 
    android:contentDescription="@string/logout_button" />