我正在研究android,以便我编辑编辑文本。在代码之后,文本就像在其中蒙蔽了一样

时间:2016-12-16 13:09:46

标签: android

enter image description here

在我的附件中,文字只是覆盖边界 如何在编辑文本中获得可用空间,如下所示?

enter image description here

2 个答案:

答案 0 :(得分:1)

只需在编辑文本中使用一行

android:padding="10dp"

将解决您的问题。

edittext_states.xml (在可绘制文件夹中创建此可绘制资源文件,并在editText背景中设置此文件)。

<selector
    xmlns:android="http://schemas.android.com/apk/res/android"
    >
    <item
        android:state_focused="true"
        android:drawable="@color/colorAccent"
        /> <!-- focused -->
    <item
        android:drawable="@color/colorPrimaryDark"
        /> <!-- default -->
</selector>

设置为编辑背景:

android:background="@drawable/edittext_states"

答案 1 :(得分:0)