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.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 a postal address list for picking.
     30  */
     31 public class PostalAddressPickerFragment
     32         extends ContactEntryListFragment<ContactEntryListAdapter> {
     33     private OnPostalAddressPickerActionListener mListener;
     34 
     35     public PostalAddressPickerFragment() {
     36         setQuickContactEnabled(false);
     37         setPhotoLoaderEnabled(true);
     38         setSectionHeaderDisplayEnabled(true);
     39         setDirectorySearchMode(DirectoryListLoader.SEARCH_MODE_DATA_SHORTCUT);
     40     }
     41 
     42     public void setOnPostalAddressPickerActionListener(
     43             OnPostalAddressPickerActionListener listener) {
     44         this.mListener = listener;
     45     }
     46 
     47     @Override
     48     protected void onItemClick(int position, long id) {
     49         if (!isLegacyCompatibilityMode()) {
     50             PostalAddressListAdapter adapter = (PostalAddressListAdapter)getAdapter();
     51             pickPostalAddress(adapter.getDataUri(position));
     52         } else {
     53             LegacyPostalAddressListAdapter adapter = (LegacyPostalAddressListAdapter)getAdapter();
     54             pickPostalAddress(adapter.getContactMethodUri(position));
     55         }
     56     }
     57 
     58     @Override
     59     protected ContactEntryListAdapter createListAdapter() {
     60         if (!isLegacyCompatibilityMode()) {
     61             PostalAddressListAdapter adapter = new PostalAddressListAdapter(getActivity());
     62             adapter.setSectionHeaderDisplayEnabled(true);
     63             adapter.setDisplayPhotos(true);
     64             return adapter;
     65         } else {
     66             LegacyPostalAddressListAdapter adapter =
     67                     new LegacyPostalAddressListAdapter(getActivity());
     68             adapter.setSectionHeaderDisplayEnabled(false);
     69             adapter.setDisplayPhotos(false);
     70             return adapter;
     71         }
     72     }
     73 
     74     @Override
     75     protected View inflateView(LayoutInflater inflater, ViewGroup container) {
     76         return inflater.inflate(R.layout.contact_list_content, null);
     77     }
     78 
     79     @Override
     80     protected void onCreateView(LayoutInflater inflater, ViewGroup container) {
     81         super.onCreateView(inflater, container);
     82 
     83         setVisibleScrollbarEnabled(!isLegacyCompatibilityMode());
     84     }
     85 
     86     private void pickPostalAddress(Uri uri) {
     87         mListener.onPickPostalAddressAction(uri);
     88     }
     89 }
     90