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 pickEmailAddress(adapter.getDataUri(position)); 46 } 47 48 @Override createListAdapter()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 inflateView(LayoutInflater inflater, ViewGroup container)57 protected View inflateView(LayoutInflater inflater, ViewGroup container) { 58 return inflater.inflate(R.layout.contact_list_content, null); 59 } 60 61 @Override onCreateView(LayoutInflater inflater, ViewGroup container)62 protected void onCreateView(LayoutInflater inflater, ViewGroup container) { 63 super.onCreateView(inflater, container); 64 65 setVisibleScrollbarEnabled(!isLegacyCompatibilityMode()); 66 } 67 pickEmailAddress(Uri uri)68 private void pickEmailAddress(Uri uri) { 69 mListener.onPickEmailAddressAction(uri); 70 } 71 } 72