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