OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:shareIntent
(Results
1 - 25
of
52
) sorted by null
1
2
3
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
ActionBarShareActionProvider.java
44
final Intent
shareIntent
= new Intent(Intent.ACTION_SEND);
45
shareIntent
.setType("text/plain");
46
shareIntent
.putExtra(Intent.EXTRA_TEXT, "Hello!");
48
sap.setShareIntent(
shareIntent
);
/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
);
/packages/apps/Messaging/src/com/android/messaging/ui/photoviewer/
BuglePhotoViewController.java
112
final Intent
shareIntent
= new Intent();
113
shareIntent
.setAction(Intent.ACTION_SEND);
114
shareIntent
.setType(contentType);
115
shareIntent
.putExtra(Intent.EXTRA_STREAM, Uri.parse(photoUri));
116
mShareActionProvider.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/Launcher3/src/com/android/launcher3/testing/
MemoryDumpActivity.java
128
Intent
shareIntent
= new Intent(Intent.ACTION_SEND);
129
shareIntent
.setType("application/zip");
132
shareIntent
.putExtra(Intent.EXTRA_SUBJECT, String.format("Launcher memory dump (%d)", myPid));
141
shareIntent
.putExtra(Intent.EXTRA_TEXT, body.toString());
146
shareIntent
.putExtra(Intent.EXTRA_STREAM, pathUri);
147
context.startActivity(
shareIntent
);
/frameworks/base/packages/Shell/src/com/android/shell/
BugreportProgressService.java
[
all
...]
/frameworks/support/compat/java/android/support/v4/app/
ShareCompat.java
82
void configureMenuItem(MenuItem item, IntentBuilder
shareIntent
);
88
public void configureMenuItem(MenuItem item, IntentBuilder
shareIntent
) {
89
item.setIntent(
shareIntent
.createChooserIntent());
128
public void configureMenuItem(MenuItem item, IntentBuilder
shareIntent
) {
129
ShareCompatICS.configureMenuItem(item,
shareIntent
.getActivity(),
130
shareIntent
.getIntent());
132
item.setIntent(
shareIntent
.createChooserIntent());
236
* @param
shareIntent
IntentBuilder with data about the content to share
238
public static void configureMenuItem(MenuItem item, IntentBuilder
shareIntent
) {
239
IMPL.configureMenuItem(item,
shareIntent
);
[
all
...]
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java
340
final Intent
shareIntent
= new Intent(Intent.ACTION_SEND)
348
final Intent shareChooserIntent = Intent.createChooser(
shareIntent
, title);
/packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailPlaybackPresenter.java
[
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
Completed in 440 milliseconds
1
2
3