Home
last modified time | relevance | path

Searched refs:ContentItem (Results 1 – 2 of 2) sorted by relevance

/development/samples/browseable/ShareActionProvider/src/com.example.android.shareactionprovider/
DMainActivity.java19 import com.example.android.shareactionprovider.content.ContentItem;
50 private final ArrayList<ContentItem> mItems = getSampleContent();
122 final ContentItem item = mItems.get(position);
126 case ContentItem.CONTENT_TYPE_TEXT: {
138 case ContentItem.CONTENT_TYPE_IMAGE: {
160 ContentItem item = mItems.get(position); in setShareIntent()
195 static ArrayList<ContentItem> getSampleContent() { in getSampleContent()
196 ArrayList<ContentItem> items = new ArrayList<ContentItem>(); in getSampleContent()
198 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_1.jpg")); in getSampleContent()
199 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_1)); in getSampleContent()
[all …]
/development/samples/browseable/ShareActionProvider/src/com.example.android.shareactionprovider/content/
DContentItem.java28 public class ContentItem { class
44 public ContentItem(int type, int resourceId) { in ContentItem() method in ContentItem
56 public ContentItem(int type, String assetFilePath) { in ContentItem() method in ContentItem