blob: c2a424b00b117233753755a8923836924b8f9cf9 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Joe Onoratoa5902522009-07-30 13:37:37 -070017package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
19import android.content.Context;
20import android.content.res.Resources;
21import android.graphics.drawable.Drawable;
22import android.view.LayoutInflater;
23import android.view.View;
24import android.view.ViewGroup;
25import android.widget.BaseAdapter;
26import android.widget.TextView;
27
28import java.util.ArrayList;
29
Romain Guyedcce092010-03-04 13:03:17 -080030import com.android.launcher.R;
31
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032/**
33 * Adapter showing the types of items that can be added to a {@link Workspace}.
34 */
35public class AddAdapter extends BaseAdapter {
Romain Guy7c7a0732009-03-24 18:10:17 -070036
The Android Open Source Project31dd5032009-03-03 19:32:27 -080037 private final LayoutInflater mInflater;
Winson Chung5a808352011-06-27 19:08:49 -070038
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039 private final ArrayList<ListItem> mItems = new ArrayList<ListItem>();
Winson Chung5a808352011-06-27 19:08:49 -070040
Jeffrey Sharkeya9cf26c2009-03-24 20:42:58 -070041 public static final int ITEM_SHORTCUT = 0;
42 public static final int ITEM_APPWIDGET = 1;
Winson Chung55b65502011-05-26 12:03:43 -070043 public static final int ITEM_APPLICATION = 2;
Jeffrey Sharkeya9cf26c2009-03-24 20:42:58 -070044 public static final int ITEM_WALLPAPER = 3;
Winson Chung5a808352011-06-27 19:08:49 -070045
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046 /**
47 * Specific item in our list.
48 */
49 public class ListItem {
50 public final CharSequence text;
51 public final Drawable image;
52 public final int actionTag;
Winson Chung5a808352011-06-27 19:08:49 -070053
The Android Open Source Project31dd5032009-03-03 19:32:27 -080054 public ListItem(Resources res, int textResourceId, int imageResourceId, int actionTag) {
55 text = res.getString(textResourceId);
56 if (imageResourceId != -1) {
57 image = res.getDrawable(imageResourceId);
58 } else {
59 image = null;
60 }
61 this.actionTag = actionTag;
62 }
63 }
64
65 public AddAdapter(Launcher launcher) {
66 super();
Romain Guy7c7a0732009-03-24 18:10:17 -070067
68 mInflater = (LayoutInflater) launcher.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Winson Chung5a808352011-06-27 19:08:49 -070069
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070 // Create default actions
71 Resources res = launcher.getResources();
Winson Chung5a808352011-06-27 19:08:49 -070072
The Android Open Source Project31dd5032009-03-03 19:32:27 -080073 mItems.add(new ListItem(res, R.string.group_wallpapers,
Daniel Sandler9a60d542009-10-06 12:57:42 -040074 R.drawable.ic_launcher_wallpaper, ITEM_WALLPAPER));
The Android Open Source Project31dd5032009-03-03 19:32:27 -080075 }
76
77 public View getView(int position, View convertView, ViewGroup parent) {
78 ListItem item = (ListItem) getItem(position);
Winson Chung5a808352011-06-27 19:08:49 -070079
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080 if (convertView == null) {
81 convertView = mInflater.inflate(R.layout.add_list_item, parent, false);
82 }
Winson Chung5a808352011-06-27 19:08:49 -070083
The Android Open Source Project31dd5032009-03-03 19:32:27 -080084 TextView textView = (TextView) convertView;
85 textView.setTag(item);
86 textView.setText(item.text);
87 textView.setCompoundDrawablesWithIntrinsicBounds(item.image, null, null, null);
Winson Chung5a808352011-06-27 19:08:49 -070088
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089 return convertView;
90 }
91
92 public int getCount() {
93 return mItems.size();
94 }
95
96 public Object getItem(int position) {
97 return mItems.get(position);
98 }
99
100 public long getItemId(int position) {
101 return position;
102 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800103}