summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/addbookmark/FolderSpinnerAdapter.java
blob: 4ae417bf160c945e9866d60d3422e9b90cca08fd (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
157
158
159
160
161
162
163
/*
 * 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.graphics.drawable.Drawable;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;

/**
 * SpinnerAdapter used in the AddBookmarkPage to select where to save a
 * bookmark/folder.
 */
public class FolderSpinnerAdapter extends BaseAdapter {

    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;

    private boolean mIncludeHomeScreen;
    private boolean mIncludesRecentFolder;
    private long mRecentFolderId;
    private String mRecentFolderName;
    private LayoutInflater mInflater;
    private Context mContext;
    private String mOtherFolderDisplayText;

    public FolderSpinnerAdapter(Context context, boolean includeHomeScreen) {
        mIncludeHomeScreen = includeHomeScreen;
        mContext = context;
        mInflater = LayoutInflater.from(mContext);
    }

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

    public long recentFolderId() { return mRecentFolderId; }

    private void bindView(int position, View view, boolean isDropDown) {
        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;
                break;
            case ROOT_FOLDER:
                labelResource = R.string.add_to_bookmarks_menu_option;
                drawableResource = R.drawable.ic_bookmarks;
                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;
                break;
            default:
                labelResource = 0;
                drawableResource = 0;
                // assert
                break;
        }
        TextView textView = (TextView) view;
        if (position == RECENT_FOLDER) {
            textView.setText(mRecentFolderName);
        } else if (position == OTHER_FOLDER && !isDropDown
                && mOtherFolderDisplayText != null) {
            textView.setText(mOtherFolderDisplayText);
        } else {
            textView.setText(labelResource);
        }
        textView.setGravity(Gravity.CENTER_VERTICAL);
        Drawable drawable = mContext.getResources().getDrawable(drawableResource);
        textView.setCompoundDrawablesWithIntrinsicBounds(drawable, null,
                null, null);
    }

    @Override
    public View getDropDownView(int position, View convertView, ViewGroup parent) {
        if (convertView == null) {
            convertView = mInflater.inflate(
                    android.R.layout.simple_spinner_dropdown_item, parent, false);
        }
        bindView(position, convertView, true);
        return convertView;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        if (convertView == null) {
            convertView = mInflater.inflate(android.R.layout.simple_spinner_item,
                    parent, false);
        }
        bindView(position, convertView, false);
        return convertView;
    }

    @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;
    }

    public void setOtherFolderDisplayText(String parentTitle) {
        mOtherFolderDisplayText = parentTitle;
        notifyDataSetChanged();
    }

    public void clearRecentFolder() {
        if (mIncludesRecentFolder) {
            mIncludesRecentFolder = false;
            notifyDataSetChanged();
        }
    }
}