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.
我想在选项卡上显示进度对话框,以便我可以更改选项卡。我的进度条全屏显示,因此我无法更改标签。
是的,当然您可以显示进度对话框,setCancelable(false)以便用户无法更改选项卡。
setCancelable(false)
但是你在显示进度条时遇到了什么问题?
ProgressDialog 需要当前显示窗口的上下文,我认为您正在关注 TabGroupActivity 示例,您应该通过以下语句初始化 ProgressDialog:
ProgressDialog pd=ProgressDialog.show(getParent(), "title", "message");