PostalAddressPickerFragment.java revision 98fa1b049f3bd5c84237169983e171fae345439b
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 */
16package com.android.contacts.list;
17
18import com.android.contacts.R;
19
20import android.net.Uri;
21import android.view.LayoutInflater;
22import android.view.View;
23import android.view.ViewGroup;
24
25/**
26 * Fragment containing a postal address list for picking.
27 */
28public class PostalAddressPickerFragment
29        extends ContactEntryListFragment<ContactEntryListAdapter> {
30    private OnPostalAddressPickerActionListener mListener;
31
32    public PostalAddressPickerFragment() {
33        setQuickContactEnabled(false);
34        setPhotoLoaderEnabled(true);
35        setSectionHeaderDisplayEnabled(true);
36        setDirectorySearchMode(DirectoryListLoader.SEARCH_MODE_DATA_SHORTCUT);
37    }
38
39    public void setOnPostalAddressPickerActionListener(
40            OnPostalAddressPickerActionListener listener) {
41        this.mListener = listener;
42    }
43
44    @Override
45    protected void onItemClick(int position, long id) {
46        if (!isLegacyCompatibilityMode()) {
47            PostalAddressListAdapter adapter = (PostalAddressListAdapter)getAdapter();
48            pickPostalAddress(adapter.getDataUri(position));
49        } else {
50            LegacyPostalAddressListAdapter adapter = (LegacyPostalAddressListAdapter)getAdapter();
51            pickPostalAddress(adapter.getContactMethodUri(position));
52        }
53    }
54
55    @Override
56    protected ContactEntryListAdapter createListAdapter() {
57        if (!isLegacyCompatibilityMode()) {
58            PostalAddressListAdapter adapter = new PostalAddressListAdapter(getActivity());
59            adapter.setSectionHeaderDisplayEnabled(true);
60            adapter.setDisplayPhotos(true);
61            return adapter;
62        } else {
63            LegacyPostalAddressListAdapter adapter =
64                    new LegacyPostalAddressListAdapter(getActivity());
65            adapter.setSectionHeaderDisplayEnabled(false);
66            adapter.setDisplayPhotos(false);
67            return adapter;
68        }
69    }
70
71    @Override
72    protected View inflateView(LayoutInflater inflater, ViewGroup container) {
73        if (isSearchMode()) {
74            return inflater.inflate(R.layout.contacts_search_content, null);
75        } else {
76            return inflater.inflate(R.layout.contacts_list_content, null);
77        }
78    }
79
80    public void pickPostalAddress(Uri uri) {
81        mListener.onPickPostalAddressAction(uri);
82    }
83}
84