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 /**
     30  * A cursor adapter for the Phones.CONTENT_TYPE content type.
     31  */
     32 @SuppressWarnings("deprecation")
     33 public class LegacyPhoneNumberListAdapter extends ContactEntryListAdapter {
     34 
     35     private static final String[] PHONES_PROJECTION = new String[] {
     36         Phones._ID,             // 0
     37         Phones.TYPE,            // 1
     38         Phones.LABEL,           // 2
     39         Phones.NUMBER,          // 3
     40         People.DISPLAY_NAME,    // 4
     41         People.PHONETIC_NAME,   // 5
     42     };
     43 
     44     private static final int PHONE_ID_COLUMN_INDEX = 0;
     45     private static final int PHONE_TYPE_COLUMN_INDEX = 1;
     46     private static final int PHONE_LABEL_COLUMN_INDEX = 2;
     47     private static final int PHONE_NUMBER_COLUMN_INDEX = 3;
     48     private static final int PHONE_DISPLAY_NAME_COLUMN_INDEX = 4;
     49     private static final int PHONE_PHONETIC_NAME_COLUMN_INDEX = 5;
     50 
     51     private CharSequence mUnknownNameText;
     52 
     53     public LegacyPhoneNumberListAdapter(Context context) {
     54         super(context);
     55         mUnknownNameText = context.getText(android.R.string.unknownName);
     56     }
     57 
     58     @Override
     59     public void configureLoader(CursorLoader loader, long directoryId) {
     60         loader.setUri(Phones.CONTENT_URI);
     61         loader.setProjection(PHONES_PROJECTION);
     62         loader.setSortOrder(Phones.DISPLAY_NAME);
     63     }
     64 
     65     @Override
     66     public String getContactDisplayName(int position) {
     67         return ((Cursor)getItem(position)).getString(PHONE_DISPLAY_NAME_COLUMN_INDEX);
     68     }
     69 
     70     public Uri getPhoneUri(int position) {
     71         Cursor cursor = ((Cursor)getItem(position));
     72         long id = cursor.getLong(PHONE_ID_COLUMN_INDEX);
     73         return ContentUris.withAppendedId(Phones.CONTENT_URI, id);
     74     }
     75 
     76     @Override
     77     protected View newView(Context context, int partition, Cursor cursor, int position,
     78             ViewGroup parent) {
     79         final ContactListItemView view = new ContactListItemView(context, null);
     80         view.setUnknownNameText(mUnknownNameText);
     81         return view;
     82     }
     83 
     84     @Override
     85     protected void bindView(View itemView, int partition, Cursor cursor, int position) {
     86         ContactListItemView view = (ContactListItemView)itemView;
     87         bindName(view, cursor);
     88         bindPhoneNumber(view, cursor);
     89     }
     90 
     91     protected void bindName(final ContactListItemView view, Cursor cursor) {
     92         view.showDisplayName(cursor, PHONE_DISPLAY_NAME_COLUMN_INDEX, getContactNameDisplayOrder());
     93         view.showPhoneticName(cursor, PHONE_PHONETIC_NAME_COLUMN_INDEX);
     94     }
     95 
     96     protected void bindPhoneNumber(ContactListItemView view, Cursor cursor) {
     97         CharSequence label = null;
     98         if (!cursor.isNull(PHONE_TYPE_COLUMN_INDEX)) {
     99             final int type = cursor.getInt(PHONE_TYPE_COLUMN_INDEX);
    100             final String customLabel = cursor.getString(PHONE_LABEL_COLUMN_INDEX);
    101 
    102             // TODO cache
    103             label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
    104         }
    105         view.setLabel(label);
    106         view.showData(cursor, PHONE_NUMBER_COLUMN_INDEX);
    107     }
    108 }
    109