i am facing a weird problem. In my EditText:
1) I can see multiple cursor when user type anything.
2) Hint is also visible even when user is typing somethin
I don't know why problem was coming, but it got resolved after modifying my edittext_background. I have added transparent background. New XML is:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<stroke
android:width="2dip"
android:color="@color/white" />
<solid android:color="#00000000" />
<padding
android:bottom="5dip"
android:left="5dip"
android:right="10dip"
android:top="5dip" />