Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想展示一个覆盖整个屏幕的 ProgressDialog。我的意思是当对话框显示时,不应触摸、单击或交互 UI。如何创建这样的对话框?
这已经由普通的 ProgressDialog 完成。 只需添加myProgressDialog.setCanceledOnTouchOutside(false); 这可以防止对话框在用户单击屏幕时关闭。 myProgressDialog.setCancelable(false);防止对话框在“返回”键上关闭
myProgressDialog.setCanceledOnTouchOutside(false);
myProgressDialog.setCancelable(false);