summaryrefslogtreecommitdiffstats
path: root/core/java/com/android/internal/widget/AccountViewAdapter.java
blob: 8a7a9a67bfc49897b3e1edb4d5955e73ab099951 (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
/*
* Copyright (C) 2011-2014 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.internal.widget;

import android.content.Context;
import android.graphics.drawable.Drawable;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;

import java.util.List;

public class AccountViewAdapter extends BaseAdapter {

    private List<AccountElements> mData;
    private Context mContext;

    /**
     * Constructor
     *
     * @param context The context where the View associated with this Adapter is running
     * @param data A list with AccountElements data type. The list contains the data of each
     *         account and the each member of AccountElements will correspond to one item view.
     */
    public AccountViewAdapter(Context context, final List<AccountElements> data) {
        mContext = context;
        mData = data;
    }

    @Override
    public int getCount() {
        return mData.size();
    }

    @Override
    public Object getItem(int position) {
        return mData.get(position);
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    public void updateData(final List<AccountElements> data) {
        mData = data;
        notifyDataSetChanged();
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        AccountItemView view;
        if (convertView == null) {
            view = new AccountItemView(mContext);
        } else {
            view = (AccountItemView) convertView;
        }
        AccountElements elements = (AccountElements) getItem(position);
        view.setViewItem(elements);
        return view;
    }

    public static class AccountElements {
        private int mIcon;
        private Drawable mDrawable;
        private String mName;
        private String mNumber;

        /**
         * Constructor
         * A structure with basic element of an Account, icon, name and number
         *
         * @param icon Account icon id
         * @param name Account name
         * @param num Account number
         */
        public AccountElements(int icon, String name, String number) {
            this(icon, null, name, number);
        }

        /**
         * Constructor
         * A structure with basic element of an Account, drawable, name and number
         *
         * @param drawable Account drawable
         * @param name Account name
         * @param num Account number
         */
        public AccountElements(Drawable drawable, String name, String number) {
            this(0, drawable, name, number);
        }

        private AccountElements(int icon, Drawable drawable, String name, String number) {
            mIcon = icon;
            mDrawable = drawable;
            mName = name;
            mNumber = number;
        }

        public int getIcon() {
            return mIcon;
        }
        public String getName() {
            return mName;
        }
        public String getNumber() {
            return mNumber;
        }
        public Drawable getDrawable() {
            return mDrawable;
        }
    }
}