HomeSort by relevance Sort by last modified time
    Searched defs:shareIntent (Results 1 - 25 of 46) sorted by null

1 2

  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarShareActionProviderActivity.java 83 Intent shareIntent = new Intent(Intent.ACTION_SEND);
84 shareIntent.setType("image/*");
86 shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
87 return shareIntent;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
WindowFocusObserver.java 71 Intent shareIntent = new Intent(Intent.ACTION_SEND);
72 shareIntent.setType("image/*");
74 shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
75 actionProvider.setShareIntent(shareIntent);
ContentBrowserActivity.java 196 Intent shareIntent = new Intent(Intent.ACTION_SEND);
197 shareIntent.setType("image/*");
199 shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
200 actionProvider.setShareIntent(shareIntent);
ContentBrowserNavActivity.java 198 Intent shareIntent = new Intent(Intent.ACTION_SEND);
199 shareIntent.setType("image/*");
201 shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
202 actionProvider.setShareIntent(shareIntent);
SystemUIModes.java 287 Intent shareIntent = new Intent(Intent.ACTION_SEND);
288 shareIntent.setType("image/*");
290 shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
291 actionProvider.setShareIntent(shareIntent);
VideoPlayerActivity.java 220 Intent shareIntent = new Intent(Intent.ACTION_SEND);
221 shareIntent.setType("image/*");
223 shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
224 actionProvider.setShareIntent(shareIntent);
  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/Application/src/main/java/com/example/android/actionbarcompat/shareactionprovider/
MainActivity.java 86 // Get the ViewPager's current item position and set its ShareIntent.
163 Intent shareIntent = item.getShareIntent(MainActivity.this);
166 mShareActionProvider.setShareIntent(shareIntent);
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ShareActionProvider/Application/src/main/java/com/example/android/actionbarcompat/shareactionprovider/
MainActivity.java 86 // Get the ViewPager's current item position and set its ShareIntent.
163 Intent shareIntent = item.getShareIntent(MainActivity.this);
166 mShareActionProvider.setShareIntent(shareIntent);
  /development/samples/browseable/ActionBarCompat-ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/
MainActivity.java 86 // Get the ViewPager's current item position and set its ShareIntent.
163 Intent shareIntent = item.getShareIntent(MainActivity.this);
166 mShareActionProvider.setShareIntent(shareIntent);
  /developers/demos/JustForUs/justforus/src/main/java/com/example/android/justforus/
MainActivity.java 122 Intent shareIntent = ShareCompat.IntentBuilder.from(this)
128 startActivity(shareIntent);
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentFragment.java 354 Intent shareIntent = new Intent(Intent.ACTION_SEND);
355 shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(tempFile));
356 shareIntent.setType("image/jpeg");
357 startActivity(Intent.createChooser(shareIntent, "Share photo"));
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchService.java 104 Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
105 shareIntent.setType("text/plain");
106 shareIntent.putExtra(
108 shareIntent.putExtra(Intent.EXTRA_TEXT, Stopwatches.buildShareResults(
110 Intent chooserIntent = Intent.createChooser(shareIntent, null);
StopwatchFragment.java 529 final Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
530 shareIntent.setType("text/plain");
531 shareIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
532 shareIntent.putExtra(Intent.EXTRA_SUBJECT,
534 shareIntent.putExtra(Intent.EXTRA_TEXT, Stopwatches.buildShareResults(
538 final Intent launchIntent = Intent.createChooser(shareIntent,
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
MemoryDumpActivity.java 118 Intent shareIntent = new Intent(Intent.ACTION_SEND);
119 shareIntent.setType("application/zip");
122 shareIntent.putExtra(Intent.EXTRA_SUBJECT, String.format("Launcher memory dump (%d)", myPid));
131 shareIntent.putExtra(Intent.EXTRA_TEXT, body.toString());
136 shareIntent.putExtra(Intent.EXTRA_STREAM, pathUri);
137 context.startActivity(shareIntent);
  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 82 void configureMenuItem(MenuItem item, IntentBuilder shareIntent);
87 public void configureMenuItem(MenuItem item, IntentBuilder shareIntent) {
88 item.setIntent(shareIntent.createChooserIntent());
125 public void configureMenuItem(MenuItem item, IntentBuilder shareIntent) {
126 ShareCompatICS.configureMenuItem(item, shareIntent.getActivity(),
127 shareIntent.getIntent());
129 item.setIntent(shareIntent.createChooserIntent());
230 * @param shareIntent IntentBuilder with data about the content to share
232 public static void configureMenuItem(MenuItem item, IntentBuilder shareIntent) {
233 IMPL.configureMenuItem(item, shareIntent);
    [all...]
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar 
  /development/samples/training/location-aware/libs/
android-support-v4.jar 
  /sdk/apps/NotificationStudio/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 
  /development/samples/ControllerSample/libs/
android-support-v4.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar 
  /development/samples/training/InteractiveChart/libs/
android-support-v4.jar 
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 

Completed in 822 milliseconds

1 2