Home | History | Annotate | Download | only in sharing

Lines Matching full:link

3 parent.link=index.html
7 previous.link=receive.html
31 <p>Implementing an effective and user friendly share action in your {@link android.app.ActionBar}
32 is made even easier with the introduction of {@link android.view.ActionProvider} in Android 4.0
33 (API Level 14). An {@link android.view.ActionProvider}, once attached to a menu item in the action
34 bar, handles both the appearance and behavior of that item. In the case of {@link
37 <p class="note"><strong>Note:&nbsp;</strong> {@link android.widget.ShareActionProvider} is available
44 <strong>Figure 1.</strong> The {@link android.widget.ShareActionProvider} in the Gallery app.
50 <p>To get started with {@link android.widget.ShareActionProvider ShareActionProviders}, define the <code>android:actionProviderClass</code> attribute for the corresponding <code>&lt;item&gt;</code> in your <a href="{@docRoot}guide/topics/resources/menu-resource.html">menu resource</a> file:</p>
63 {@link android.widget.ShareActionProvider}. However, you will need to tell the provider what you
69 <p>In order for {@link android.widget.ShareActionProvider} to function, you must provide it a share
72 lesson, with action {@link android.content.Intent#ACTION_SEND} and additional data set via extras
73 like {@link android.content.Intent#EXTRA_TEXT} and {@link android.content.Intent#EXTRA_STREAM}. To
74 assign a share intent, first find the corresponding {@link android.view.MenuItem} while inflating
75 your menu resource in your {@link android.app.Activity} or {@link android.app.Fragment}. Next, call
76 {@link android.view.MenuItem#getActionProvider() MenuItem.getActionProvider()} to retreive an
77 instance of {@link android.widget.ShareActionProvider}. Use {@link
112 <p>For further discussion about the {@link android.widget.ShareActionProvider} object, see the <a