Create alert dialog box in android. Arti Mishra158305-Nov-2018How to create alert dialog box in androidandroid appsandroid Updated on 05-Nov-2018
Arti Mishra
05-Nov-2018First Create a Button in your XML file.(activity_main.xml)
<Button
android:id="@+id/show_alert"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show Alert"
android:textSize="@dimen/text_size" />
Code for alert Dialog box
MainActvity.java
"Thanks!!! for Reading"