中心左对齐按钮的文本

时间:2012-12-01 14:32:23

标签: android button text-align

即使我做了重力中心文字仍在左边。我假设必须有一个方法来改变文本对齐 (我试过android:textAlignment =“中心”)

我在下面列出了截图,但没有足够的声誉来展示它。

<!-- 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>

ScreenShot

2 个答案:

答案 0 :(得分:25)

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

答案 1 :(得分:0)

将android:layout_gravity =“center”添加到按钮的布局中,并使用宽度wrap_content来修复它。