首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android 对话框使用

2012-09-28 
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();  

?

热点排行