3

这是我的布局,它很好地使提示居中,但我如何使提示左对齐,边距为 10dip ?,(即我想让它保持垂直居中但也左对齐)

             <EditText
                android:id="@+id/mobilePhoneNumber"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:visibility="gone"
                android:inputType="number"
                android:ellipsize="start"
                android:gravity="center"
                android:layout_marginTop="10dip"
                android:hint="@string/lbl_hint_enter_mobile_phone_number"
                android:textSize="14dip"
                android:layout_marginLeft="10dip"
                android:layout_marginRight="10dip"
                android:maxLines="1" />
4

2 回答 2

12
 <EditText
            android:id="@+id/mobilePhoneNumber"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:inputType="number"
            android:ellipsize="start"
            android:gravity="left|center_vertical"
            android:paddingLeft="5dp"
            android:layout_marginTop="10dip"
            android:hint="hello world"
            android:textSize="14dip"
            android:layout_marginLeft="10dip"
            android:layout_marginRight="10dip"
            android:maxLines="1" />
于 2012-07-11T01:56:17.630 回答
3

您需要填充,而不是边距:

android:paddingLeft="10dip"
android:paddingRight="10dip"

如果您不希望水平居中,请将重力设置为“center_vertical”。

于 2012-07-11T01:56:05.267 回答