Simple Alert Dialog in android

AlertDialog.Builder bd = new AlertDialog.Builder(linear.getContext());
              
               AlertDialog ad = bd.create();
              
               ad.setTitle("Welcome ");
               ad.setMessage(" building");
               ad.show();