Home | History | Annotate | Download | only in cts

Lines Matching refs:intent

20 import android.content.Intent;
33 "android.intent.category.LEANBACK_SETTINGS";
56 * category intent.
64 Intent intent = new Intent(Intent.ACTION_MAIN);
65 intent.addCategory(Intent.CATEGORY_LEANBACK_LAUNCHER);
66 assertIntentCanBeHandled(intent);
71 * category intent.
79 Intent intent = new Intent(Intent.ACTION_MAIN);
80 intent.addCategory(LEANBACK_SETTINGS_CATEGORY);
81 assertIntentCanBeHandled(intent);
84 private void assertIntentCanBeHandled(final Intent intent) {
87 packageManager.queryIntentActivities(intent, 0);
89 // one or more activity can handle this intent.