Making an app using ProgressDialog, and it shows up fine on JellyBean but when testing with Lollipop I only see the title and message, no progress spinner.. I am using
compile 'com.android.support:appcompat-v7:22.2.0'
Support library and AppCompatActivity
The code is:
ProgressDialog progressDialog = new ProgressDialog(AddBuddyActivity.this);
progressDialog.setMessage("Loading...");
progressDialog.setCancelable(false);
progressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
progressDialog.show();
You can see another question I posted on the same topic here.