Android edit text cursor is not visible?
android, android-edittext
Solution
Did you try?
Setting the `android:textCursorDrawable` attribute to @null should result in the use of `android:textColor` as the cursor color.
Problem
``` <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="#ffffff" /> <stroke android:width="1dp" android:color="#000000" /> </shape> ``` I am using this code in `setBackgroundResource(R.drawable.selfbg);` While I am using this code the cursor is not visible in Edittext.