Are you planning to switch to the android.support.v7.app.AlertDialog which supports defining an accent color, including pre-Lollipop Android versions?
You would need to replace the import for the AlertDialog and reference a style for it:
AlertDialog.Builder builder = new AlertDialog.Builder(mContext, R.style.AppDialog);
The styles.xml cool look like this:
<style name="AppDialog" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">@color/accent</item>
</style>
Are you planning to switch to the android.support.v7.app.AlertDialog which supports defining an accent color, including pre-Lollipop Android versions?
You would need to replace the import for the AlertDialog and reference a style for it:
The styles.xml cool look like this: