问题描述
- 静态上下文中支持进度条
-
我实现了:((Activity) mContext).setProgressBarIndeterminateVisibility(true);
但是这样就不行:
((Activity) mContext).setSupportProgressBarIndeterminateVisibility(true);
系统提示method is undefined for the type Activity
请帮忙看一下,谢谢。
解决方案
根据你的要求,需要用activity name代替activity。假设activity名称是MyAcivity
,试试:
((MyActivity) mContext).setSupportProgressBarIndeterminateVisibility(true);
解决方案二:
setSupportProgressBarIndeterminateVisibility这个是开源项目ActionBarSherlock里的吧
android本身没有
时间: 2025-01-02 04:56:06