Home | History | Annotate | Download | only in com.example.android.actionbarcompat.shareactionprovider

Lines Matching defs:items

51     // The items to be displayed in the ViewPager
70 // Finally set the adapter so the ViewPager can display items
190 ArrayList<ContentItem> items = new ArrayList<ContentItem>();
192 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_1.jpg"));
193 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_1));
194 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_2));
195 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_2.jpg"));
196 items.add(new ContentItem(ContentItem.CONTENT_TYPE_TEXT, R.string.quote_3));
197 items.add(new ContentItem(ContentItem.CONTENT_TYPE_IMAGE, "photo_3.jpg"));
199 return items;