android 对话框使用

android 对话框应用啥都别说了,看效果吧!?LayoutInflater factory LayoutInflater.from(Lesson_02_Dia.t

android 对话框应用

啥都别说了,看效果吧!

?

    LayoutInflater factory = LayoutInflater.from(Lesson_02_Dia.this);     //获得自定义对话框     View view = factory.inflate(R.layout.login, null);          AlertDialog dialog02 = new AlertDialog.Builder(Lesson_02_Dia.this)          .setIcon(android.R.drawable.btn_star)         .setTitle("登录")           .setView(view)       .setPositiveButton("Yes", onclick)           .setNegativeButton("No",  onclick).create();     dialog02.show();  

?