0

即使我使重心文本仍然在左侧。我认为必须有一种方法来更改文本对齐(我也尝试过 android:textAlignment="center" )

我在下面包含了屏幕截图,但没有足够的声誉来展示它。

<!-- language: lang-xml-->    
<Button
                android:id="@+id/button1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="50"
                android:gravity="center"
                android:text="Button" />

也试图让它 match_parent 仍然是同样的问题。

编辑整个 XML

<!-- language: lang-xml-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <EditText
        android:id="@+id/etCommands"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="Type a Command"
        android:password="true" >
    </EditText>

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

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

    <TextView
        android:id="@+id/tvResults"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="invalid" />

</LinearLayout>

截屏

4

2 回答 2

25

我也有这个问题。只需重新启动您的 IDE。

于 2013-02-27T12:11:36.893 回答
0

将 android:layout_gravity="center" 添加到按钮的布局并具有宽度 wrap_content 应该可以修复它。

于 2012-12-01T14:44:51.730 回答