MultiSearchView icon indicating copy to clipboard operation
MultiSearchView copied to clipboard

Change Cursor color and drawable color isn't working,

Open mrkamiali opened this issue 5 years ago • 1 comments

Change Cursor color and the drawable color isn't working in style either in XML, is there any other workaround please let me know asap.

mrkamiali avatar Jul 23 '19 13:07 mrkamiali

Change Cursor color and the drawable color isn't working in style either in XML, is there any other workaround please let me know asap.

The searchview is using this style for the editText

<style name="EditTextStyle" parent="TextAppearance.AppCompat">
    <item name="colorControlNormal">#565656</item>
    <item name="colorControlActivated">#000</item>
    <item name="android:textSize">18sp</item>
</style>

colorControlActivated is used for the Cursor color. - Just include it to your styles.xml and edit/add it as you like.

moelle89 avatar Mar 12 '20 23:03 moelle89