I am working on Android 3.0. I am using an EditText
that has a transparent background . The EditText
is placed on a layout having a white background. As a result the EditText
cursor is not visible (I assume the cursor is white by default) . After going through your forum I found out a solution that says I have to create my own cursor drawable using styles.xml
.
But to my dismay, the cursorDrawable
parameter is available only in Android 3.1. But I have to work on 3.0 and above.
Is there any solution?