你能解释为什么当我改变引力时它没有改变。首先,当我改变它时,按钮的位置发生了变化,但现在我无法改变位置。
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="92dp"
android:layout_height="0dp"
android:layout_gravity="right"
android:layout_weight="1"
android:text="@string/button1" />
</LinearLayout>
答案 0 :(得分:2)
为LinearLayout的相关布局 android:layout_width =“match_parent”设置此属性 (父布局)
答案 1 :(得分:1)
您正在设置按钮的重力,这将导致设置视图的布局。例如,如果你有按钮上的文字,你设置了重心,那么它会将文本居中对齐到按钮,将组件的重力设置为其父级,你需要设置父的重力。
所以将您的代码更改为:
<?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="wrap_content"
android:gravity="right"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="92dp"
android:layout_height="0dp"
android:layout_weight="1"
android:text="@string/button1" />
</LinearLayout>
答案 2 :(得分:0)
我的猜测是你需要将父布局的属性“layout_width”(即包含按钮的LinearLayout)设置为fill_parent。