I have a pointer in the layout for customizing the user dialog. I changed my .xml style to use new stuff. It works because it changes the text and checkboxes of my settings, but I cannot apply this color to my search bar. It only works if I put a search barrier in action, which means I have to do something in my custom layout, but I don't know what. I am posting styles.xml and layout with arrow:
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="AppBaseTheme" parent="android:Theme.Material"> <item name="android:colorPrimary">#FFFF4444</item> <item name="android:colorPrimaryDark">#FFCC0000</item> <item name="android:colorAccent">#FFFF00</item> </style> <style name="AppTheme" parent="AppBaseTheme"> </style> </resources>
custom layout for dialog preference:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <SeekBar android:id="@+id/seek_bar" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="6dip" android:theme="@android:style/Theme.Material" android:layout_marginTop="6dip" /> </LinearLayout>
source share