android Dialog&AlertDialog
Posted 一样菜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android Dialog&AlertDialog相关的知识,希望对你有一定的参考价值。
Dialog dialog = new Dialog(context,R.style.AppBaseTheme); wifiView = AppData.inflater.inflate(R.layout.wifi_ip_info_form, null); dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); dialog.setContentView(wifiView); /* Window dialogWindow = dialog.getWindow(); //getActivity().getWindow().setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM, //WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM); dialogWindow.setLayout(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT); dialogWindow.setGravity(Gravity.TOP); dialog.show();*/ dialog.show();
以上是关于android Dialog&AlertDialog的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅------>怎样将Activity变为半透明的对话框?