Skip to content

Instantly share code, notes, and snippets.

@dhawalhshah
dhawalhshah / ProgressDialogActivity.java
Created November 10, 2011 18:26
Android Activity to show the Progress dialog created using DialogFragment
public class ProgressDialogActivity extends FragmentActivity {
final static String LOADING_DIALOG_TAG = "progress_dialog";
/**
* Shows the loading progress dialog
*/
public void showLoadingDialog() {
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
@dhawalhshah
dhawalhshah / ProgressDialogFragment.java
Created November 10, 2011 17:45
Showing a Progress dialog using DialogFragment in Android
public class ProgressDialogFragment extends DialogFragment {
public static LoadingDialogFragment newInstance() {
ProgressDialogFragment frag = new ProgressDialogFragment ();
return frag;
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {