Example usage for android.widget TextView.OnEditorActionListener interface-usage

List of usage examples for android.widget TextView.OnEditorActionListener interface-usage

Introduction

In this page you can find the example usage for android.widget TextView.OnEditorActionListener interface-usage.

Usage

From source file com.elkriefy.android.apps.authenticationexample.fingerprintdialog.FingerprintAuthenticationDialogFragment.java

/**
 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
 * authentication if fingerprint is not available.
 */
public class FingerprintAuthenticationDialogFragment extends DialogFragment
        implements TextView.OnEditorActionListener, FingerprintUiHelper.Callback {

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 org.videolan.vlc.gui.MRLPanelFragment.java

public class MRLPanelFragment extends Fragment implements View.OnKeyListener, TextView.OnEditorActionListener {
    private static final String TAG = "VLC/MrlPanelFragment";
    private RecyclerView mRecyclerView;
    private MRLAdapter mAdapter;
    private RecyclerView.LayoutManager mLayoutManager;
    ArrayList<String> mHistory;

From source file com.google.cast.samples.games.gamedebugger.PlayerTransitionDialogFragment.java

/**
 * This dialog fragment is used to transition players to other states and send game messages.
 */
public class PlayerTransitionDialogFragment extends DialogFragment implements TextView.OnEditorActionListener {

    public static final String TAG = "PlayerTransitionDialog";

From source file com.fusionx.lightirc.ui.IRCFragment.java

public abstract class IRCFragment<T extends Event> extends ListFragment implements TextView.OnEditorActionListener {

    Conversation mConversation;

    @InjectView(R.id.fragment_irc_message_box)
    EditText mMessageBox;

From source file com.rong.library.widget.mapsearchbar.MapSearchBar.java

/**
 * Copyright (c) 2016-2017, j2Rong
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file com.rnd.snapsplit.view.DialogFragmentFingerprintAuthentication.java

/**
 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
 * authentication if fingerprint is not available.
 */

public class DialogFragmentFingerprintAuthentication extends DialogFragment

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

public class SavePlaylist extends DialogFragment
        implements AdapterView.OnItemClickListener, View.OnClickListener, TextView.OnEditorActionListener {

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

    public static final String KEY_TRACKS = "PLAYLIST_TRACKS";

From source file org.videolan.vlc.gui.network.MRLPanelFragment.java

public class MRLPanelFragment extends Fragment implements View.OnKeyListener, TextView.OnEditorActionListener {
    private static final String TAG = "VLC/MrlPanelFragment";
    private RecyclerView mRecyclerView;
    private MRLAdapter mAdapter;
    private RecyclerView.LayoutManager mLayoutManager;
    ArrayList<String> mHistory;

From source file com.ternup.caddisfly.fragment.FormFragment.java

public class FormFragment extends BaseFragment implements TextView.OnEditorActionListener {

    FormEditText mPlaceEditText;

    FormEditText mThoroughfareEditText;