我可以用其他布局膨胀自定义或警报对话框
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService (LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.custom_dialog,null);
...
builder.setView(layout)
...
AlertDialog alert = builder.create();
...
alert.show();
而且我知道如何通过 Intent 调用系统设置对话框:
Intent MyIntent = new Intent(Settings.ACTION_WIFI_IP_SETTINGS);
startActivity(MyIntent);
所以我有问题如何使用我有意调用的系统设置屏幕来扩展对话框?我想显示像对话框窗口这样的系统屏幕。如何builder.setView()
对系统设置屏幕进行操作并使用 Intent 调用它?可能吗?