3、调用此dialog
//此处直接new一个Dialog对象出来,在实例化的时候传入主题 dialog = new Dialog(Sel_NoteTypeActivity.this, R.style.addNoteType_error_Dialog); //设置它的ContentView dialog.setContentView(R.layout.dialog_addnotetype_error); Button btn_add_note_addnotetype_Error_ok = (Button)dialog.findViewById(R.id.btn_add_note_addnotetype_Error_ok); btn_add_note_addnotetype_Error_ok.setOnClickListener(new addnoteTypeErroClickListener()); dialog.show();
按钮点击事件:
class addnoteTypeErroClickListener implements OnClickListener{
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
dialog.cancel();
}
}
有时候,我们会想设置dialog的宽或高,这个还是比较简单的,直接在dialog.show()下面添加如下代码:
WindowManager.LayoutParams Layoutparams = dialog.getWindow().getAttributes(); Layoutparams.width = (int)(mScreenWidth *9 / 10); //设置宽度 dialog.getWindow().setAttributes(Layoutparams);
希望本文所述对大家Android程序设计有所帮助。
注:相关教程知识阅读请移步到Android开发频道。










