Example usage for android.content DialogInterface.OnKeyListener interface-usage

List of usage examples for android.content DialogInterface.OnKeyListener interface-usage

Introduction

In this page you can find the example usage for android.content DialogInterface.OnKeyListener interface-usage.

Usage

From source file org.videolan.vlc.gui.JumpToTimeFragment.java

public class JumpToTimeFragment extends DialogFragment implements DialogInterface.OnKeyListener,
        View.OnClickListener, View.OnFocusChangeListener, TextView.OnEditorActionListener {

    private static long HOURS_IN_MILLIS = 60 * 60 * 1000;
    private static long MINUTES_IN_MILLIS = 60 * 1000;

From source file com.simas.vc.file_chooser.FileChooser.java

/**
 * Custom dialog for choosing a file from the device's drive.
 */
public class FileChooser extends DialogFragment
        implements AdapterView.OnItemClickListener, DialogInterface.OnKeyListener {

From source file com.stfalcon.frescoimageviewer.ImageViewer.java

public class ImageViewer implements OnDismissListener, DialogInterface.OnKeyListener {

    private static final String TAG = ImageViewer.class.getSimpleName();

    private Builder builder;
    private AlertDialog dialog;

From source file org.videolan.vlc.gui.dialogs.PickTimeFragment.java

public abstract class PickTimeFragment extends DialogFragment implements DialogInterface.OnKeyListener,
        View.OnClickListener, View.OnFocusChangeListener, TextView.OnEditorActionListener {

    public final static String TAG = "VLC/PickTimeFragment";

    public static final int ACTION_JUMP_TO_TIME = 0;

From source file com.nbplus.vbroadlauncher.fragment.LoadIoTDevicesDialogFragmentStatus.java

/**
 * Created by basagee on 2015. 6. 23..
 */
public class LoadIoTDevicesDialogFragmentStatus extends DialogFragment
        implements DialogInterface.OnKeyListener, IoTServiceStatusNotification, AdapterView.OnItemClickListener {
    private static final String TAG = LoadIoTDevicesDialogFragmentStatus.class.getSimpleName();

From source file com.github.michalbednarski.intentslab.editor.FindComponentDialog.java

/**
 * Dialog for picking app by inexact intent filters.
 */
public class FindComponentDialog extends DialogFragment implements AdapterView.OnItemClickListener,
        AdapterView.OnItemLongClickListener, View.OnClickListener, DialogInterface.OnKeyListener {