AlertDialog with no buttons (just text message)


We have seen quite a few examples of AlertDialog with one button, two and three buttons. It is possible to create a AlertDialog that behaves just like Toast messages. The only difference is that the message will stay visible until user taps on the screen outside the dialog message pop-up.

Android AlertDialog with No Buttons
Android AlertDialog with No Buttons
Example :
 @Override
    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);

        builder.setTitle("AlertDialog with No Buttons");

        builder.setMessage("Hide this message by just tapping anywhere outside the dialog box!");


        AlertDialog diag = builder.create();

        //Display the message!
        diag.show();

    }


















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap