Open amzer opened 5 years ago
@amzer We have forked the project and added styling option, you can find it here: https://github.com/PolideaInternal/ColorPicker
you can set on your styles.xml `
</style>
<!--confirm button-->
<style name="positiveBtnStyle" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog">
<item name="android:textColor">@color/colorPrimary</item>
</style>`
and set on your AndridManifest.xml
<activity android:name=".business.qrcode.qrcode_design.QrcodeDesignActivity" android:theme="@style/DesignActivityTheme"/>
you can set on your styles.xml
<style name="DesignActivityTheme" parent="ActivityTheme"> <item name="buttonBarPositiveButtonStyle">@style/positiveBtnStyle</item> </style> <!--confirm button--> <style name="positiveBtnStyle" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog"> <item name="android:textColor">@color/colorPrimary</item> </style>
and set on your AndridManifest.xml
<activity android:name=".business.qrcode.qrcode_design.QrcodeDesignActivity" android:theme="@style/DesignActivityTheme"/>
thanks it works for select button, but how to change title text color?
Is there a way to set custom font for dialog title and the buttons? If so, please explain how to do it.