Home | History | Annotate | Download | only in util

Lines Matching defs:intent

20 import android.content.Intent;
31 * Functions to easily prepare contextual help menu option items with an intent that opens up the
59 * - Otherwise, this makes the help menu item visible and sets the intent for the help menu
73 * - Otherwise, this makes the help menu item visible and sets the intent for the help menu
90 // Then, create an intent that will be fired when the user
92 Intent intent = new Intent(Intent.ACTION_VIEW, fullUri);
93 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
94 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
96 // Set the intent to the help menu item, show the help menu item in the overflow
98 helpMenuItem.setIntent(intent);