This is one of my Edit text in the application
<EditText
android:id="@+id/etFolder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="/pictures"
android:ems="10" >
When it appear at first time it comes with "/pictures"
User can change the text and enter another word. but how to prevent deleting "/" of Edit text.
user can delete all other text but should not allow to delete first character.
How can I achieve this behavior ?