summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/addbookmark/FolderSpinnerAdapter.java
blob: 261aa6236395269c8bbb17cdcf7e0b650bd7b244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
 * Copyright (C) 2011 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.browser.addbookmark;

import com.android.browser.R;

import android.content.Context;
import android.content.res.Resources;
import android.database.DataSetObserver;
import android.graphics.drawable.Drawable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Adapter;
import android.widget.SpinnerAdapter;
import android.widget.TextView;

/**
 * SpinnerAdapter used in the AddBookmarkPage to select where to save a
 * bookmark/folder.
 */
public class FolderSpinnerAdapter implements SpinnerAdapter {
    private boolean mIncludeHomeScreen;
    private boolean mIncludesRecentFolder;
    private long mRecentFolderId;
    private String mRecentFolderName;

    public static final int HOME_SCREEN = 0;
    public static final int ROOT_FOLDER = 1;
    public static final int OTHER_FOLDER = 2;
    public static final int RECENT_FOLDER = 3;

    public FolderSpinnerAdapter(boolean includeHomeScreen) {
        mIncludeHomeScreen = includeHomeScreen;
    }

    public void addRecentFolder(long folderId, String folderName) {
        mIncludesRecentFolder = true;
        mRecentFolderId = folderId;
        mRecentFolderName = folderName;
    }

    public long recentFolderId() { return mRecentFolderId; }

    @Override
    public View getDropDownView(int position, View convertView, ViewGroup parent) {
        int labelResource;
        int drawableResource;
        if (!mIncludeHomeScreen) {
            position++;
        }
        switch (position) {
            case HOME_SCREEN:
                labelResource = R.string.add_to_homescreen_menu_option;
                drawableResource = R.drawable.ic_home_holo_dark;
                break;
            case ROOT_FOLDER:
                labelResource = R.string.add_to_bookmarks_menu_option;
                drawableResource = R.drawable.ic_bookmarks_holo_dark;
                break;
            case RECENT_FOLDER:
                // Fall through and use the same icon resource
            case OTHER_FOLDER:
                labelResource = R.string.add_to_other_folder_menu_option;
                drawableResource = R.drawable.ic_folder_holo_dark;
                break;
            default:
                labelResource = 0;
                drawableResource = 0;
                // assert
                break;
        }
        Context context = parent.getContext();
        LayoutInflater factory = LayoutInflater.from(context);
        TextView textView = (TextView) factory.inflate(R.layout.add_to_option, null);
        if (position == RECENT_FOLDER) {
            textView.setText(mRecentFolderName);
        } else {
            textView.setText(labelResource);
        }
        Drawable drawable = context.getResources().getDrawable(drawableResource);
        textView.setCompoundDrawablesWithIntrinsicBounds(drawable, null,
                null, null);
        return textView;
    }

    @Override
    public void registerDataSetObserver(DataSetObserver observer) {
    }

    @Override
    public void unregisterDataSetObserver(DataSetObserver observer) {
    }

    @Override
    public int getCount() {
        int count = 2;
        if (mIncludeHomeScreen) count++;
        if (mIncludesRecentFolder) count++;
        return count;
    }

    @Override
    public Object getItem(int position) {
        return null;
    }

    @Override
    public long getItemId(int position) {
        long id = position;
        if (!mIncludeHomeScreen) {
            id++;
        }
        return id;
    }

    @Override
    public boolean hasStableIds() {
        return true;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        return getDropDownView(position, convertView, parent);
    }

    @Override
    public int getItemViewType(int position) {
        // Never want to recycle views
        return Adapter.IGNORE_ITEM_VIEW_TYPE;
    }

    @Override
    public int getViewTypeCount() {
        return 1;
    }

    @Override
    public boolean isEmpty() {
        return false;
    }
}