2
I’m developing an app, which uses some alertDialogs at certain times. my question is the following, I would like to leave the theme of these Alerts according to the Android version of the smartphone that will run the app, IE, it "pick up" the customizations settings already from android and stream to Alert. I didn’t want to change through XML and leave a pattern, I want the default to be according to the android version on which the app is running. In this case, I’m performing the tests through a Moto X with Android 4.4.2 that has its theme black with blue, but the alertDialog appears white with black letters.
I appreciate all your help !
Strange, I will do some tests on other devices, but is already
AlertDialog.Builder(context)
. If I use Theme it will be a pattern already for any device isn’t it? Well, I’ll see what I can, thank you !– Jonathan Sales