“So erstellen Sie programmgesteuert in Android Fortschrittsdialog” Code-Antworten

So erstellen Sie programmgesteuert in Android Fortschrittsdialog

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(); //do not include with above code
Ad9an

Custom ProgressDialog Android

dependencies {
...
   compile 'com.github.d-max:spots-dialog:0.4@aar'
}
Xenophobic Xenomorph

Custom ProgressDialog Android

private AlertDialog progressDialog;
progressDialog = new SpotsDialog(mContext, R.style.Custom);

//Am using it in an AsyncTask. So in  my onPreExecute, I do this:
public void onPreExecute() {
  super.onPreExecute();
  progressDialog.show();
  ...
 }

//dismiss in onPostExecute
public void onPostExecute(){
   progressDialog.dismiss();
 } 
Xenophobic Xenomorph

Custom ProgressDialog Android

<style name="Custom" parent="android:Theme.DeviceDefault.Dialog">
    <item name="DialogTitleAppearance">@android:style/TextAppearance.Medium</item>
    <item name="DialogTitleText">Please Wait</item>
    <item name="DialogSpotColor">@android:color/holo_orange_dark</item>
    <item name="DialogSpotCount">8</item>
</style>
Xenophobic Xenomorph

Ähnliche Antworten wie “So erstellen Sie programmgesteuert in Android Fortschrittsdialog”

Fragen ähnlich wie “So erstellen Sie programmgesteuert in Android Fortschrittsdialog”

Weitere verwandte Antworten zu “So erstellen Sie programmgesteuert in Android Fortschrittsdialog” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen