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