Lines Matching refs:ContentItem
19 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()
200 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_2)); in getSampleContent()
201 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_2.jpg")); in getSampleContent()
202 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_3)); in getSampleContent()
203 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_3.jpg")); in getSampleContent()