All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.holoeverywhere.app.AlertDialogFragment Maven / Gradle / Ivy

The newest version!

package org.holoeverywhere.app;

import android.os.Bundle;

public class AlertDialogFragment extends DialogFragment {
    public AlertDialogFragment() {
        setDialogType(DialogType.AlertDialog);
    }

    protected void onCreateDialog(AlertDialog.Builder builder) {

    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        AlertDialog.Builder builder = new AlertDialog.Builder(getSupportActivity());
        onCreateDialog(builder);
        return builder.create();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy