如何在android程序中的任意activity弹出对话框
发布网友
发布时间:2022-04-23 03:48
我来回答
共3个回答
热心网友
时间:2023-07-01 18:18
任意Activity弹出对话框,那你可以用service 服务中弹出一个全局的
以下是代码
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setIcon(R.drawable.ic);
builder.setTitle("标题");
builder.setMessage("提示文字");
builder.setPositiveButton(R.string.btn_update, new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//增加按钮,回调事件
}
);
builder.setCancelable(false);//弹出框不可以换返回键取消
AlertDialog dialog = builder.create();
dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);//将弹出框设置为全局
dialog.setCanceledOnTouchOutside(false);//失去焦点不会消失
dialog.show();
热心网友
时间:2023-07-01 18:19
Window android.app.Activity.getWindow()Retrieve the current android.view.Window for the activity. This can be used to directly access parts of the Window API that are not available through Activity/Screen.Returns: Window The current window, or null if the activity is not visual.我感觉这个函数应该对楼主有帮助。哈哈。。。
查看原帖>>
热心网友
时间:2023-07-01 18:19
那得在每个activity中写上弹出对话框的方法
你可以把弹出对话框写道单独的类中,用方法包含起来,然后直接在需要弹出activity中调用这个方法就行了