1/*
2 * Copyright (C) 2010 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 */
16package com.android.contacts.list;
17
18import android.content.ContentUris;
19import android.content.Context;
20import android.content.CursorLoader;
21import android.database.Cursor;
22import android.net.Uri;
23import android.provider.Contacts.ContactMethods;
24import android.provider.Contacts.People;
25import android.provider.ContactsContract.CommonDataKinds.StructuredPostal;
26import android.view.View;
27import android.view.ViewGroup;
28
29import com.android.contacts.common.list.ContactEntryListAdapter;
30import com.android.contacts.common.list.ContactListItemView;
31
32/**
33 * A cursor adapter for the ContactMethods.CONTENT_TYPE content type.
34 */
35@SuppressWarnings("deprecation")
36public class LegacyPostalAddressListAdapter extends ContactEntryListAdapter {
37
38    static final String[] POSTALS_PROJECTION = new String[] {
39        ContactMethods._ID,     // 0
40        ContactMethods.TYPE,    // 1
41        ContactMethods.LABEL,   // 2
42        ContactMethods.DATA,    // 3
43        People.DISPLAY_NAME,    // 4
44        People.PHONETIC_NAME,   // 5
45    };
46
47    public static final int POSTAL_ID_COLUMN_INDEX = 0;
48    public static final int POSTAL_TYPE_COLUMN_INDEX = 1;
49    public static final int POSTAL_LABEL_COLUMN_INDEX = 2;
50    public static final int POSTAL_NUMBER_COLUMN_INDEX = 3;
51    public static final int POSTAL_DISPLAY_NAME_COLUMN_INDEX = 4;
52    public static final int POSTAL_PHONETIC_NAME_COLUMN_INDEX = 5;
53
54    private CharSequence mUnknownNameText;
55
56    public LegacyPostalAddressListAdapter(Context context) {
57        super(context);
58        mUnknownNameText = context.getText(android.R.string.unknownName);
59    }
60
61    @Override
62    public void configureLoader(CursorLoader loader, long directoryId) {
63        loader.setUri(ContactMethods.CONTENT_URI);
64        loader.setProjection(POSTALS_PROJECTION);
65        loader.setSortOrder(People.DISPLAY_NAME);
66        loader.setSelection(ContactMethods.KIND + "=" + android.provider.Contacts.KIND_POSTAL);
67    }
68
69    @Override
70    public String getContactDisplayName(int position) {
71        return ((Cursor)getItem(position)).getString(POSTAL_DISPLAY_NAME_COLUMN_INDEX);
72    }
73
74    public Uri getContactMethodUri(int position) {
75        Cursor cursor = ((Cursor)getItem(position));
76        long id = cursor.getLong(POSTAL_ID_COLUMN_INDEX);
77        return ContentUris.withAppendedId(ContactMethods.CONTENT_URI, id);
78    }
79
80    @Override
81    protected View newView(Context context, int partition, Cursor cursor, int position,
82            ViewGroup parent) {
83        final ContactListItemView view = new ContactListItemView(context, null);
84        view.setUnknownNameText(mUnknownNameText);
85        return view;
86    }
87
88    @Override
89    protected void bindView(View itemView, int partition, Cursor cursor, int position) {
90        ContactListItemView view = (ContactListItemView)itemView;
91        bindName(view, cursor);
92        bindPostalAddress(view, cursor);
93    }
94
95    protected void bindName(final ContactListItemView view, Cursor cursor) {
96        view.showDisplayName(cursor, POSTAL_DISPLAY_NAME_COLUMN_INDEX,
97                getContactNameDisplayOrder());
98        view.showPhoneticName(cursor, POSTAL_PHONETIC_NAME_COLUMN_INDEX);
99    }
100
101    protected void bindPostalAddress(ContactListItemView view, Cursor cursor) {
102        CharSequence label = null;
103        if (!cursor.isNull(POSTAL_TYPE_COLUMN_INDEX)) {
104            final int type = cursor.getInt(POSTAL_TYPE_COLUMN_INDEX);
105            final String customLabel = cursor.getString(POSTAL_LABEL_COLUMN_INDEX);
106
107            // TODO cache
108            label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
109        }
110        view.setLabel(label);
111        view.showData(cursor, POSTAL_NUMBER_COLUMN_INDEX);
112    }
113}
114