Available Methods
- show ( )
- setMessage ( )
- setCancelable ( )
- setIndeterminate ( )
- setTitle ( )
- setProgressStyle ( )
- setCanceledOnTouchOutside ( )
- setMax ( )
- setOnCancelListener ( )
- isShowing ( )
- dismiss ( )
- setProgress ( )
- setButton ( )
- setProgressNumberFormat ( )
- requestWindowFeature ( )
- setContentView ( )
- getWindow ( )
- setOnDismissListener ( )
- hide ( )
- setOwnerActivity ( )
- isIndeterminate ( )
- setIcon ( )
- STYLE_SPINNER
Related Classes
- java.io.File
- android.os.Bundle
- android.content.Context
- android.view.View
- android.util.Log
- android.widget.TextView
- android.content.Intent
- android.view.ViewGroup
- android.app.Activity
- android.view.LayoutInflater
- android.os.Build
- android.widget.Toast
- android.widget.ImageView
- android.os.Handler
- android.net.Uri
- android.widget.Button
- android.graphics.Bitmap
- android.text.TextUtils
- android.widget.LinearLayout
- android.support.annotation.Nullable
- android.widget.EditText
- android.content.SharedPreferences
- android.support.annotation.NonNull
- android.annotation.SuppressLint
- android.content.DialogInterface
Java Code Examples for android.app.ProgressDialog#isIndeterminate()
The following examples show how to use
android.app.ProgressDialog#isIndeterminate() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BaseActivity.java From your-local-weather with GNU General Public License v3.0 | 5 votes |
@NonNull protected ProgressDialog getProgressDialog() { ProgressDialog dialog = new ProgressDialog(this); dialog.isIndeterminate(); dialog.setMessage(getString(R.string.load_progress)); dialog.setCancelable(false); return dialog; }
Example 2
Source File: BaseActivity.java From good-weather with GNU General Public License v3.0 | 5 votes |
@NonNull protected ProgressDialog getProgressDialog() { ProgressDialog dialog = new ProgressDialog(this); dialog.isIndeterminate(); dialog.setMessage(getString(R.string.load_progress)); dialog.setCancelable(false); return dialog; }