Progress Dialog. Font: https://stackoverflow.com/questions/12841803/best-way-to-show-a-loading-progress-indicator
ProgressDialog progress = new ProgressDialog(this);
progress.setTitle("Loading");
progress.setMessage("Wait while loading...");
progress.setCancelable(false); // disable dismiss by tapping outside of the dialog
progress.show();
// To dismiss the dialog
progress.dismiss();
// OR
ProgressDialog.show(this, "Loading", "Wait while loading...");