Loading spinning wheel animation

前端 未结 3 591

I\'m doing a search and populating a listview with results as they come. On top there\'s a bar with the text \"Search in progress... \" I\'d like to add a small spinning whe

3条回答
  •  一生所求
    2020-12-23 22:34

            ProgressDialog dialog = new ProgressDialog(youravtivity.this);
            dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
            dialog.setMessage("Loading. Please wait...");
            dialog.setIndeterminate(true);
            dialog.setCanceledOnTouchOutside(false);
            dialog.show();
    

提交回复
热议问题