According to your request, you need to create your own dialogue topic and install in custom_theme.xml Now just install it according to your version of the API .
First, add theme.xml in the values ββlike this:
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="MyAppTheme" parent="@android:style/Theme.Light.NoTitleBar"> </style> </resources>
Then create a directory called "values-v11" (Android 3.0+) in the res directory and put theme.xml like this
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="MyAppTheme" parent="@android:style/Theme.Holo.Light"> </style> </resources>
Finally, create a directory called "values-v14" (Android 4.0+) in the res directory and create a theme.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="MyAppTheme" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar"> </style> </resources>
More ... check the link and follow it.
I hope you get an idea about them and solve your problem.
Good luck.
source share