Edittext输入类型对齐额外空间

时间:2013-12-23 00:44:03

标签: android xml eclipse alignment android-edittext

我想在编辑文本中输入额外的空间来输入文本。 这就是我现在所拥有的:

enter image description here

但我想实现这个目标:

enter image description here

edittext的哪个属性会执行此操作(在xml中)? 或者我必须以另一种方式做到这一点?

提前致谢!

2 个答案:

答案 0 :(得分:1)

android:paddingLeft是您需要的财产。您可以将其用作android:paddingLeft="8dp"

在此处查看此答案:https://stackoverflow.com/a/4619943/1739882

答案 1 :(得分:0)

添加此属性:

android:paddingLeft="10dp"

填充通常用于对齐EditTextButtons

内的文字。

如果您正在寻找

,请通知我