Set EditText cursor to text color for api 12-20

Closes #228
pull/253/head
Alex Baker 11 years ago
parent 371b76980d
commit ccfc2903e3

@ -22,6 +22,7 @@
android:orientation="vertical">
<EditText
style="@style/edit_text_style"
android:id="@+id/notes"
android:layout_width="match_parent"
android:layout_height="wrap_content"

@ -25,6 +25,7 @@
android:src="@drawable/btn_check" />
<EditText
style="@style/edit_text_style"
android:id="@+id/title"
android:cursorVisible="false"
android:layout_width="0dp"

@ -83,6 +83,7 @@
<!-- Quick Add Task -->
<EditText
style="@style/edit_text_style"
android:id="@+id/commentField"
android:layout_width="wrap_content"
android:layout_height="39dip"

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="edit_text_style">
<item name="android:textCursorDrawable">@null</item>
</style>
</resources>

@ -3,4 +3,8 @@
<style name="AppThemeBase" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
</style>
<style name="edit_text_style">
</style>
</resources>

@ -157,6 +157,9 @@
<item name="android:textColor">?attr/asTextColor</item>
</style>
<style name="edit_text_style">
</style>
<!--================================================== Custom Dialogs == -->
<style name="DialogTitle">

Loading…
Cancel
Save