In my application, I show alert if the GPS location invalid:
Dialog.alert("Current Location info not available..");
I want to change the default background color and text color of the dialog alert. I need transparent silver color. How to create a custom dialog alert on Blackberry?
To show custom dialog you need to create custom class by extending PopupScreen.
Like below.
After creating custom class you need to take Manager like.
Push Screen when you want to display dialog like below.
On Button Click listener call
Hope This will help you