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.
我有一个异步任务,可以进行上传并显示一个进度对话框。如果它被服务调用,我希望能够不显示对话框,因此无法显示对话框。问题是有没有办法确定我拥有哪种类型的上下文(活动或应用程序)?
if( context instanceof Activity ) { //... } else { //... }