Home | History | Annotate | Download | only in settings

Lines Matching refs:Item

33 public class AppWidgetLoader<Item extends AppWidgetLoader.LabelledItem> {
39 ItemConstructor<Item> mItemConstructor;
46 ItemConstructor<Item> itemConstructor) {
56 void putCustomAppWidgets(List<Item> items, Intent intent) {
115 List<Bundle> customExtras, List<Item> items, int categoryFilter,
127 Item item = mItemConstructor.createItem(mContext, info,
130 items.add(item);
134 public interface ItemConstructor<Item> {
135 Item createItem(Context context, AppWidgetProviderInfo info, Bundle extras);
144 protected List<Item> getItems(Intent intent) {
148 List<Item> items = new ArrayList<Item>();
160 Collections.sort(items, new Comparator<Item>() {
163 public int compare(Item lhs, Item rhs) {
168 List<Item> customItems = new ArrayList<Item>();
178 void putInstalledAppWidgets(List<Item> items, int categoryFilter) {