Home | History | Annotate | Download | only in list
      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  */
     16 package com.android.contacts.list;
     17 
     18 import android.content.ContentUris;
     19 import android.content.Context;
     20 import android.content.CursorLoader;
     21 import android.database.Cursor;
     22 import android.net.Uri;
     23 import android.provider.Contacts.People;
     24 import android.provider.Contacts.Phones;
     25 import android.provider.ContactsContract.CommonDataKinds.Phone;
     26 import android.view.View;
     27 import android.view.ViewGroup;
     28 
     29 import com.android.contacts.common.list.ContactEntryListAdapter;
     30 import com.android.contacts.common.list.ContactListItemView;
     31 
     32 /**
     33  * A cursor adapter for the Phones.CONTENT_TYPE content type.
     34  */
     35 @SuppressWarnings("deprecation")
     36 public class LegacyPhoneNumberListAdapter extends ContactEntryListAdapter {
     37 
     38     private static final String[] PHONES_PROJECTION = new String[] {
     39         Phones._ID,             // 0
     40         Phones.TYPE,            // 1
     41         Phones.LABEL,           // 2
     42         Phones.NUMBER,          // 3
     43         People.DISPLAY_NAME,    // 4
     44         People.PHONETIC_NAME,   // 5
     45     };
     46 
     47     private static final int PHONE_ID_COLUMN_INDEX = 0;
     48     private static final int PHONE_TYPE_COLUMN_INDEX = 1;
     49     private static final int PHONE_LABEL_COLUMN_INDEX = 2;
     50     private static final int PHONE_NUMBER_COLUMN_INDEX = 3;
     51     private static final int PHONE_DISPLAY_NAME_COLUMN_INDEX = 4;
     52     private static final int PHONE_PHONETIC_NAME_COLUMN_INDEX = 5;
     53 
     54     private CharSequence mUnknownNameText;
     55 
     56     public LegacyPhoneNumberListAdapter(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(Phones.CONTENT_URI);
     64         loader.setProjection(PHONES_PROJECTION);
     65         loader.setSortOrder(Phones.DISPLAY_NAME);
     66     }
     67 
     68     @Override
     69     public String getContactDisplayName(int position) {
     70         return ((Cursor)getItem(position)).getString(PHONE_DISPLAY_NAME_COLUMN_INDEX);
     71     }
     72 
     73     public Uri getPhoneUri(int position) {
     74         Cursor cursor = ((Cursor)getItem(position));
     75         long id = cursor.getLong(PHONE_ID_COLUMN_INDEX);
     76         return ContentUris.withAppendedId(Phones.CONTENT_URI, id);
     77     }
     78 
     79     @Override
     80     protected View newView(Context context, int partition, Cursor cursor, int position,
     81             ViewGroup parent) {
     82         final ContactListItemView view = new ContactListItemView(context, null);
     83         view.setUnknownNameText(mUnknownNameText);
     84         return view;
     85     }
     86 
     87     @Override
     88     protected void bindView(View itemView, int partition, Cursor cursor, int position) {
     89         ContactListItemView view = (ContactListItemView)itemView;
     90         bindName(view, cursor);
     91         bindPhoneNumber(view, cursor);
     92     }
     93 
     94     protected void bindName(final ContactListItemView view, Cursor cursor) {
     95         view.showDisplayName(cursor, PHONE_DISPLAY_NAME_COLUMN_INDEX, getContactNameDisplayOrder());
     96         view.showPhoneticName(cursor, PHONE_PHONETIC_NAME_COLUMN_INDEX);
     97     }
     98 
     99     protected void bindPhoneNumber(ContactListItemView view, Cursor cursor) {
    100         CharSequence label = null;
    101         if (!cursor.isNull(PHONE_TYPE_COLUMN_INDEX)) {
    102             final int type = cursor.getInt(PHONE_TYPE_COLUMN_INDEX);
    103             final String customLabel = cursor.getString(PHONE_LABEL_COLUMN_INDEX);
    104 
    105             // TODO cache
    106             label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
    107         }
    108         view.setLabel(label);
    109         view.showPhoneNumber(cursor, PHONE_NUMBER_COLUMN_INDEX);
    110     }
    111 }
    112