List of usage examples for android.widget TextView.OnEditorActionListener interface-usage
From source file org.gluu.oxpush2.app.MainActivityFragment.java
/** * Main activity fragment * * Created by Yuriy Movchan on 12/28/2015. */ public class MainActivityFragment extends Fragment
From source file com.crimsonrgames.titanium.htmltester.AddTagDialogFragment.java
/**
* A simple {@link Fragment} subclass.
* Activities that contain this fragment must implement the
* {@link OnAddTagDialogFragmentInteractionListener} interface
* to handle interaction events.
*/
From source file com.commonsware.android.abf.ActionBarFragment.java
public class ActionBarFragment extends ListFragment implements TextView.OnEditorActionListener { private static final String[] items = { "lorem", "ipsum", "dolor", "sit", "amet", "consectetuer", "adipiscing", "elit", "morbi", "vel", "ligula", "vitae", "arcu", "aliquet", "mollis", "etiam", "vel", "erat", "placerat", "ante", "porttitor", "sodales", "pellentesque", "augue", "purus" }; private ArrayList<String> words = null; private ArrayAdapter<String> adapter = null;
From source file com.lambdasoup.quickfit.ui.LabelDialogFragment.java
public class LabelDialogFragment extends DialogFragment implements DialogInterface.OnClickListener, TextView.OnEditorActionListener { private static final String KEY_WORKOUT_ID = "workoutId"; private static final String KEY_OLD_VALUE = "oldValue";
From source file com.emartynov.android.app.urlsetter.android.ui.fragment.EnterShortenedUrlFragment.java
public class EnterShortenedUrlFragment extends DialogFragment implements TextView.OnEditorActionListener, View.OnClickListener { @Inject Bus bus; private EditText linkEdit;
From source file com.fingerprint.PasswordAuthenticationDialogFragment.java
public class PasswordAuthenticationDialogFragment extends DialogFragment implements TextView.OnEditorActionListener { public interface Callback { void onClickOk(); }
From source file com.honestme.animetasteex.login.LoginFragment.java
public class LoginFragment extends Fragment implements LoginPresenter.LoginUi, View.OnClickListener, TextView.OnEditorActionListener, RadioGroup.OnCheckedChangeListener { private static final String KEY_NEW_ACCOUNT = "new_account"; private LoginPresenter.LoginUiCallbacks mCallbacks;
From source file com.example.android.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 app.philm.in.fragments.LoginFragment.java
public class LoginFragment extends Fragment implements UserController.UserUi, View.OnClickListener, TextView.OnEditorActionListener, RadioGroup.OnCheckedChangeListener { private static final String KEY_NEW_ACCOUNT = "new_account"; private UserController.UserUiCallbacks mCallbacks;
From source file ca.psiphon.ploggy.FragmentComposeMessage.java
/** * Re-usable user interface fragment which implements composing and sending a new message. */ public class FragmentComposeMessage extends Fragment implements View.OnClickListener, TextView.OnEditorActionListener {