List of usage examples for android.app DialogFragment subclass-usage
From source file org.y20k.transistor.helpers.StationContextMenu.java
/** * StationContextMenu class */ public final class StationContextMenu extends DialogFragment { /* Keys */
From source file com.simplealertdialog.SimpleAlertDialogFragment.java
/**
* Simple alert dialog fragment based on the normal {@code Activity}
* for API level 11 and later which supports {@code Fragment}.<br/>
* If you use android.support.v4 library,
* use {@link com.simplealertdialog.SimpleAlertDialogSupportFragment} instead.
*
From source file com.buddi.client.dfu.fragment.UploadCancelFragment.java
/** * When cancel button is pressed during uploading this fragment shows uploading cancel dialog */ public class UploadCancelFragment extends DialogFragment { private static final String TAG = "UploadCancelFragment";
From source file dtu.ds.warnme.app.dialog.WarningDialog.java
/** * @author Bartosz Cichecki * */ public class WarningDialog extends DialogFragment {
From source file com.linkedin.android.shaky.SendFeedbackDialog.java
/** * Auto-dismissing dialog that prompts the user to kick-off the feedback flow. */ public class SendFeedbackDialog extends DialogFragment { public static final String ACTION_START_FEEDBACK_FLOW = "StartFeedbackFlow";
From source file at.alladin.rmbt.android.util.RMBTAlertDialogFragment.java
public class RMBTAlertDialogFragment extends DialogFragment { private String popBackStackIncluding; public static RMBTAlertDialogFragment newInstance(final String title, final String message, final String popBackStackIncluding) {
From source file it.scoppelletti.mobilepower.app.AbstractDialogFragment.java
/** * Classe di base di un frammento che rappresenta un dialogo. * * @since 1.0 */ public abstract class AbstractDialogFragment extends DialogFragment implements MemberCache.Resolver {
From source file org.deviceconnect.android.manager.setting.OpenSourceLicenseFragment.java
/** * . */ public class OpenSourceLicenseFragment extends DialogFragment { /**
From source file ca.farrelltonsolar.classic.IPAddressDialog.java
public class IPAddressDialog extends DialogFragment { static private final String IPV4_REGEX = "(([0-1]?[0-9]{1,2}\\.)|(2[0-4][0-9]\\.)|(25[0-5]\\.)){3}(([0-1]?[0-9]{1,2})|(2[0-4][0-9])|(25[0-5]))"; static private Pattern IPV4_PATTERN = Pattern.compile(IPV4_REGEX); private static Gson GSON = new Gson(); public static IPAddressDialog newInstance(int title) {
From source file no.olav.samples.facedetect.WinFragment.java
/**
* Fragment that shows the 'You won' message. Apart from congratulating the user
* on their heroic number typing deeds, this screen also allows the player to sign
* in if they are not signed in yet.
*
* @author Bruno Oliveira (Google)