博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android Dialog&AlertDialog
阅读量:5134 次
发布时间:2019-06-13

本文共 1266 字,大约阅读时间需要 4 分钟。

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();

String title = "\n\""+itemInfo.itemSSID+"\" ";

View password_view = AppData.inflater.inflate(R.layout.wifi_cancel_connect, null);
TextView password_title = (TextView)password_view.findViewById(R.id.wifi_show_info);
password_title.setText(title);
final AlertDialog alertDialog = new AlertDialog.Builder(WirelessNetworkActivity.this).create();
alertDialog.setView(password_view);
Window window = alertDialog.getWindow();
WindowManager.LayoutParams lp = window.getAttributes();
alertDialog.show();
lp.width = 920;
lp.height = 300;
lp.alpha = 0.9f;
window.setAttributes(lp);

 

 

转载于:https://www.cnblogs.com/mypsq/p/5857097.html

你可能感兴趣的文章
使用pygal_maps_world.i18n中数据画各大洲地图
查看>>
jQuery EasyUI 的下拉选择combobox后台动态赋值
查看>>
timeline时间轴进度“群英荟萃”
查看>>
python if else elif statement
查看>>
网络编程
查看>>
文本隐藏(图片代替文字)
查看>>
java面试题
查看>>
提高码力专题(未完待续)
查看>>
pair的例子
查看>>
前端框架性能对比
查看>>
uva 387 A Puzzling Problem (回溯)
查看>>
12.2日常
查看>>
同步代码时忽略maven项目 target目录
查看>>
Oracle中包的创建
查看>>
团队开发之个人博客八(4月27)
查看>>
发布功能完成
查看>>
【原】小程序常见问题整理
查看>>
C# ITextSharp pdf 自动打印
查看>>
【Java】synchronized与lock的区别
查看>>
django高级应用(分页功能)
查看>>