Best way to show a loading/progress indicator?

后端 未结 5 1016
南笙
南笙 2020-11-30 17:34

What is the best way to show a loading spinner while the app is waiting for a response from the server?

Can this be done programmatically? So that I don\'t have to a

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-30 18:20

    Use ProgressDialog

    ProgressDialog.show(Context context, CharSequence title, CharSequence message);
    

    enter image description here

    However this is considered as an anti pattern today (2013): http://www.youtube.com/watch?v=pEGWcMTxs3I

提交回复
热议问题