Reputation: 115
When i start entering in edit text, the text starts at the left border.I need to start entering text one step after the border line of the edit text.how to do it?
Upvotes: 0
Views: 81
Reputation: 6480
Simply give padding left like below in your EditText
<EditText android:paddingLeft="5sp"/>
Upvotes: 0