I am trying to get two different color types for my EditText. One should be "primary" and other should be "accent" color.
I edited my styles.xml file to this:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorAccent">@android:color/white</item>
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">@color/primaryDark</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">@color/primaryDark</item>
</style>
</resources>
However I am only getting my edit handles, and cursorto be solid white, and highlighted selection background 50% white. Just the accent color. This is good it looks like this:
However I also need to get my highlight markers to be 50% of primary, and cursor to solid primary color, and edit handles to also primary color. As seen here, I cannot accomplish this, and the cursor, and edit handles are "white" so they are invisible:
Is there anyway to get two themed EditTexts?