Android loading animation
android, java
Solution
Try below Code
ProgressDialog for showing:
ProgressDialog mDialog = new ProgressDialog(getApplicationContext());
mDialog.setMessage("Loading...");
mDialog.setCancelable(false);
mDialog.show();
After cancel ProgressDialog below code:
mdialog.dismiss();
Problem
I am searching for some info on how to create loading animation in android. Is it possible to create this animation that i could call this animation in one thread and end in other ? I seeking for this: