Home | History | Annotate | Download | only in form

Lines Matching refs:INTENT

19 import android.content.Intent;
36 MULTIPLE_CHOICE, TEXT_INPUT, PASSWORD_INPUT, INTENT
87 * Create a form page which launches an intent to get its results.
91 * @param formIntent the intent to launch for this form page. This intent
92 * should return the form page's results via the result intent's
95 * results of the intent to the user.
98 public static FormPage createIntentForm(String title, Intent formIntent) {
99 return new FormPage(title, Type.INTENT, null, formIntent);
105 private final Intent mFormIntent;
112 Intent formIntent) {
210 Intent getIntent() {