1 /* 2 * Copyright (C) 2011 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 com.android.contacts.R; 19 20 import android.net.Uri; 21 import android.view.LayoutInflater; 22 import android.view.View; 23 import android.view.ViewGroup; 24 25 /** 26 * Fragment containing an email list for picking. 27 */ 28 public class EmailAddressPickerFragment extends ContactEntryListFragment<ContactEntryListAdapter> { 29 private OnEmailAddressPickerActionListener mListener; 30 31 public EmailAddressPickerFragment() { 32 setQuickContactEnabled(false); 33 setPhotoLoaderEnabled(true); 34 setSectionHeaderDisplayEnabled(true); 35 setDirectorySearchMode(DirectoryListLoader.SEARCH_MODE_DATA_SHORTCUT); 36 } 37 38 public void setOnEmailAddressPickerActionListener(OnEmailAddressPickerActionListener listener) { 39 mListener = listener; 40 } 41 42 @Override 43 protected void onItemClick(int position, long id) { 44 EmailAddressListAdapter adapter = (EmailAddressListAdapter)getAdapter(); 45 pickEmailAddress(adapter.getDataUri(position)); 46 } 47 48 @Override 49 protected ContactEntryListAdapter createListAdapter() { 50 EmailAddressListAdapter adapter = new EmailAddressListAdapter(getActivity()); 51 adapter.setSectionHeaderDisplayEnabled(true); 52 adapter.setDisplayPhotos(true); 53 return adapter; 54 } 55 56 @Override 57 protected View inflateView(LayoutInflater inflater, ViewGroup container) { 58 return inflater.inflate(R.layout.contacts_list_content, null); 59 } 60 61 private void pickEmailAddress(Uri uri) { 62 mListener.onPickEmailAddressAction(uri); 63 } 64 } 65