Merge pull request #11317 from t895/dialog-adjustment
Android: Use progress indicator in short loading scenarios
This commit is contained in:
commit
51dfab6823
|
@ -208,7 +208,8 @@ public class CheatsActivity extends AppCompatActivity
|
|||
public void downloadGeckoCodes()
|
||||
{
|
||||
AlertDialog progressDialog = new MaterialAlertDialogBuilder(this)
|
||||
.setMessage(R.string.cheats_downloading)
|
||||
.setTitle(R.string.cheats_downloading)
|
||||
.setView(R.layout.dialog_indeterminate_progress)
|
||||
.setCancelable(false)
|
||||
.show();
|
||||
|
||||
|
|
|
@ -240,8 +240,7 @@ public final class SettingsActivity extends AppCompatActivity implements Setting
|
|||
{
|
||||
dialog = new MaterialAlertDialogBuilder(this)
|
||||
.setTitle(getString(R.string.load_settings))
|
||||
.setView(getLayoutInflater().inflate(R.layout.dialog_indeterminate_progress, null,
|
||||
false))
|
||||
.setView(R.layout.dialog_indeterminate_progress)
|
||||
.create();
|
||||
}
|
||||
dialog.show();
|
||||
|
|
|
@ -31,6 +31,7 @@ public class ThreadUtil
|
|||
Resources resources = activity.getResources();
|
||||
AlertDialog progressDialog = new MaterialAlertDialogBuilder(activity)
|
||||
.setTitle(progressTitle)
|
||||
.setView(R.layout.dialog_indeterminate_progress)
|
||||
.setCancelable(false)
|
||||
.create();
|
||||
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<com.google.android.material.progressindicator.CircularProgressIndicator
|
||||
android:layout_width="wrap_content"
|
||||
<com.google.android.material.progressindicator.LinearProgressIndicator
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_margin="16dp"
|
||||
android:layout_margin="24dp"
|
||||
android:indeterminate="true"
|
||||
app:trackCornerRadius="2dp" />
|
||||
|
||||
|
|
Loading…
Reference in New Issue