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

后端 未结 12 2480
忘掉有多难
忘掉有多难 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:06

    You can add the ProgressBar to listview footer:

    private ListView listview;
    private ProgressBar progressBar;
    

    ...

    progressBar = (ProgressBar) LayoutInflater.from(this).inflate(R.layout.progress_bar, null);
    
    listview.addFooterView(progressBar);
    

    layout/progress_bar.xml

    
    
    

    when the data is loaded to the adapter view call:

            listview.removeFooterView(progressBar);
    

提交回复
热议问题