Creating an application using ProgressDialog, and it is perfectly visible on JellyBean, but when testing with Lollipop I see only the title and message, there is no progress scroll. I use
compile 'com.android.support:appcompat-v7:22.2.0'
Support Library and AppCompatActivity
The code:
ProgressDialog progressDialog = new ProgressDialog(AddBuddyActivity.this); progressDialog.setMessage("Loading..."); progressDialog.setCancelable(false); progressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); progressDialog.show();
You can see another question that I posted on the same topic here .
android dialog spinner progress
Brandon
source share