Category : Android CSharp MonoDroid Visual Studio Xamarin
Category : Android CSharp MonoDroid Visual Studio Xamarin
As mentioned in my earlier post, we can use the default AlertDialog class to display the alerts of screen by setting different properties and methods of it. But still there sounds like, we may need dialogs on screen which would be needed to be customized. They can be accept user inputs, can display an arranged info of an user etc.
We will follow few simple steps
Let’s add a new layout to the project under Resources > layout.
Let’s just display a quick informative popup, which will only display an alert on screen with a title and a message in it. It actually gets closed when the back button get touched.
1 2 3 4 5 6 |
AlertDialog.Builder alert = new AlertDialog.Builder(this); alert.SetMessage("This is just an alert to show on the screen in order to try my alert demo."); alert.SetTitle("Alert Clicked"); alert.Show(); |
We will add OK and Canel button. On click of the buttons, it will display a quick Toast message on screen in order
to differentiate which button is clicked.