1

以下是我的 Activity.xml 文件。我设置了按钮 layout_gravity="right",但它不起作用,谁能告诉我为什么?谢谢提前。

<LinearLayout xmlns:android=" http://schemas.android.com/apk/res/android" 
 xmlns:tools=" http://schemas.android.com/tools" 
 android:layout_width="match_parent" 
 android:layout_height="match_parent" > 



<LinearLayout 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" > 

<ImageView 
android:id="@+id/imageView1" 
android:layout_width="303dp" 
android:layout_height="wrap_content" 
android:layout_weight="0.99" 
android:src="@drawable/ic_launcher" /> 

<LinearLayout 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:layout_gravity="right" 
android:layout_weight="0.99" 
android:baselineAligned="_baseline" 
android:orientation="horizontal" > 

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

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

<Button 
android:id="@+id/button3" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_gravity="right" 
android:text="Button" /> 

</LinearLayout> 

</LinearLayout> 

</LinearLayout> 
4

1 回答 1

1

不应该,这就是原因。

仅当您的布局是垂直的时才考虑正确的 layout_gravity,在这种情况下它将具有预期的结果。

对于您要执行的操作,请在第二个和第三个按钮之间使用垫片,如下所示:

<View android:layout_width="0dp" 
    android:layout_height="match_parent" 
    android:layout_weight="1" />

它会填满空间并将您的按钮向右推。

于 2012-09-03T08:30:52.813 回答