how to show progress bar(circle) in an activity having a listview before loading the listview with data

后端 未结 12 2432
忘掉有多难
忘掉有多难 2020-11-28 00:18

I have a ListView in my second activity.OnItemClick of it I called a webservice and trying to fetch data. And after that I am moving to third activ

12条回答
  •  执念已碎
    2020-11-28 01:18

    ProgressDialog dialog = ProgressDialog.show(Example.this, "", "Loading...", true);
    

提交回复
热议问题