在editText中对齐text text_vertical并不准确显示

时间:2014-04-11 16:16:06

标签: android android-layout alignment android-edittext

我有一个包含以下代码的布局文件:

 <EditText 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:background="@drawable/edittextgreen" />

后台文件如下所示:

 <shape android:shape="rectangle"
        <solid 
            android:color="@color/Black" />
        <stroke
            android:width="1dp"
            android:color="@color/Green" />

        <corners
            android:radius="100dp" />
    </shape>

现在出现了什么: enter image description here

正如您可能看到的那样,文本未完全对齐edittext视图的垂直中心。如何正确对齐?

我已经添加了

android:gravity="center_vertical"

但它看起来仍然如此。

1 个答案:

答案 0 :(得分:1)

  <EditText
        android:layout_width="fill_parent"
        android:background="@drawable/edit_bg"
        android:layout_height="100dp"
        android:textColor="@android:color/white"
        android:paddingLeft="30dp"
        android:layout_marginBottom="10dp"
        android:text="50" />

我正在使用这个和你的背景xml,它正好在中心。

您是否通过代码做某事?请不要介意下面的列表视图 enter image description here