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.
我有一个,ListFragment我正在解析JSON。AsyncTask在处理过程中,ListFragment默认情况下会像这样显示一个加载器。
ListFragment
JSON
AsyncTask
但在其他Fragment方面,我有一个ListView(不是一个ListFragment),我需要在后台处理运行时显示相同的加载器。我能够展示一个ProgressDialog. 但我想展示一个像上图一样的加载器。我怎样才能做到这一点?
Fragment
ListView
ProgressDialog
我通过关注 github.com/johnkil/Android-ProgressFragment 项目解决了这个问题。谢谢你的建议。