How to use vendor theme in Android application

528 Views Asked by At

I'm developing my "Hello, World" application for Android and came around something that annoys me.

The theme used for my app's AlertDialog isn't the same used for other such dialogs presented on the device. The device is a HTC Desire HD on which I've changed the theme, but I was expecting that standard UI elements (like AlertDialog) would somehow reflect the device theme. It's something that I'm missing or maybe a know problem with some vendors/models?

Here's my code:

final AlertDialog.Builder confirm = new AlertDialog.Builder(this);
confirm.setTitle("Delete")
       .setMessage("Really Delete?")
       .setPositiveButton("Delete", new DialogInterface.OnClickListener() {
           @Override
           public void onClick(DialogInterface dialog, int which) {
               // ...
           }
       })
       .setNegativeButton("Cancel", null)
       .show();

And here's how the dialog looks like in different situations:

Device's AlertDialog with default theme (Messages app)

enter image description here

Device's AlertDialog with changed theme (Messages app)

enter image description here

My app's AlertDialog (with both default and changed theme)

enter image description here

Thanks.

1

There are 1 best solutions below

0
On

Your assumption is correct. HTC have most likley created customized dialogs for the HTC apps.