2014-01-19 02:17:08 +00:00
|
|
|
/**
|
2015-07-14 21:31:03 +00:00
|
|
|
* Copyright (C) 2015 Open Whisper Systems
|
2014-01-19 02:17:08 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
|
|
|
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.os.Bundle;
|
2014-03-18 06:25:09 +00:00
|
|
|
import android.support.v4.app.Fragment;
|
2014-01-19 02:17:08 +00:00
|
|
|
import android.support.v4.app.LoaderManager;
|
|
|
|
import android.support.v4.content.Loader;
|
2014-03-18 06:25:09 +00:00
|
|
|
import android.support.v4.widget.CursorAdapter;
|
2015-07-14 21:31:03 +00:00
|
|
|
import android.support.v4.widget.SwipeRefreshLayout;
|
2014-01-19 02:17:08 +00:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2014-03-18 06:25:09 +00:00
|
|
|
import android.widget.AdapterView;
|
2014-01-19 02:17:08 +00:00
|
|
|
import android.widget.TextView;
|
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
import org.thoughtcrime.securesms.contacts.ContactSelectionListAdapter;
|
2015-05-19 21:00:54 +00:00
|
|
|
import org.thoughtcrime.securesms.contacts.ContactSelectionListItem;
|
2015-07-14 21:31:03 +00:00
|
|
|
import org.thoughtcrime.securesms.contacts.ContactsCursorLoader;
|
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2014-01-19 02:17:08 +00:00
|
|
|
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
2014-03-18 06:25:09 +00:00
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
import se.emilsjolander.stickylistheaders.StickyListHeadersListView;
|
2014-01-19 02:17:08 +00:00
|
|
|
|
|
|
|
/**
|
2014-03-18 06:25:09 +00:00
|
|
|
* Fragment for selecting a one or more contacts from a list.
|
2014-01-19 02:17:08 +00:00
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
2015-07-14 21:31:03 +00:00
|
|
|
public class ContactSelectionListFragment extends Fragment
|
|
|
|
implements LoaderManager.LoaderCallbacks<Cursor>
|
2014-01-19 02:17:08 +00:00
|
|
|
{
|
2015-07-14 21:31:03 +00:00
|
|
|
private static final String TAG = ContactSelectionListFragment.class.getSimpleName();
|
2014-03-18 06:25:09 +00:00
|
|
|
|
|
|
|
private TextView emptyText;
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2015-05-19 21:00:54 +00:00
|
|
|
private Map<Long, String> selectedContacts;
|
2014-03-18 06:25:09 +00:00
|
|
|
private OnContactSelectedListener onContactSelectedListener;
|
|
|
|
private StickyListHeadersListView listView;
|
2015-07-14 21:31:03 +00:00
|
|
|
private SwipeRefreshLayout swipeRefresh;
|
2014-04-01 23:40:16 +00:00
|
|
|
private String cursorFilter;
|
2014-02-24 22:43:38 +00:00
|
|
|
|
2015-05-19 21:00:54 +00:00
|
|
|
private boolean multi = false;
|
2014-01-19 02:17:08 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onActivityCreated(Bundle icicle) {
|
|
|
|
super.onCreate(icicle);
|
|
|
|
initializeCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-03-18 06:25:09 +00:00
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-03-18 06:25:09 +00:00
|
|
|
public void onPause() {
|
|
|
|
super.onPause();
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-03-18 06:25:09 +00:00
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
2015-07-14 21:31:03 +00:00
|
|
|
View view = inflater.inflate(R.layout.contact_selection_list_fragment, container, false);
|
|
|
|
|
2015-07-15 21:28:51 +00:00
|
|
|
emptyText = (TextView) view.findViewById(android.R.id.empty);
|
2015-07-14 21:31:03 +00:00
|
|
|
swipeRefresh = (SwipeRefreshLayout) view.findViewById(R.id.swipe_refresh);
|
|
|
|
listView = (StickyListHeadersListView) view.findViewById(android.R.id.list);
|
|
|
|
listView.setFocusable(true);
|
|
|
|
listView.setFastScrollEnabled(true);
|
|
|
|
listView.setDrawingListUnderStickyHeader(false);
|
|
|
|
listView.setOnItemClickListener(new ListClickListener());
|
|
|
|
|
|
|
|
return view;
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
2015-05-19 21:00:54 +00:00
|
|
|
public List<String> getSelectedContacts() {
|
2014-03-18 06:25:09 +00:00
|
|
|
if (selectedContacts == null) return null;
|
|
|
|
|
2015-05-19 21:00:54 +00:00
|
|
|
List<String> selected = new LinkedList<>();
|
2014-02-03 19:52:27 +00:00
|
|
|
selected.addAll(selectedContacts.values());
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2014-02-03 19:52:27 +00:00
|
|
|
return selected;
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
public void setMultiSelect(boolean multi) {
|
|
|
|
this.multi = multi;
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeCursor() {
|
2014-03-18 06:25:09 +00:00
|
|
|
ContactSelectionListAdapter adapter = new ContactSelectionListAdapter(getActivity(), null, multi);
|
|
|
|
selectedContacts = adapter.getSelectedContacts();
|
|
|
|
listView.setAdapter(adapter);
|
2014-01-19 02:17:08 +00:00
|
|
|
this.getLoaderManager().initLoader(0, null, this);
|
|
|
|
}
|
|
|
|
|
2015-07-14 21:31:03 +00:00
|
|
|
public void setQueryFilter(String filter) {
|
|
|
|
this.cursorFilter = filter;
|
|
|
|
this.getLoaderManager().restartLoader(0, null, this);
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
2015-07-14 21:31:03 +00:00
|
|
|
public void resetQueryFilter() {
|
|
|
|
setQueryFilter(null);
|
|
|
|
swipeRefresh.setRefreshing(false);
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
@Override
|
|
|
|
public Loader<Cursor> onCreateLoader(int id, Bundle args) {
|
2015-07-14 21:31:03 +00:00
|
|
|
boolean pushOnly = getActivity().getIntent().getBooleanExtra(ContactSelectionActivity.PUSH_ONLY_EXTRA, false);
|
2015-07-14 21:31:03 +00:00
|
|
|
boolean supportsSms = TextSecurePreferences.isSmsEnabled(getActivity());
|
|
|
|
|
|
|
|
return new ContactsCursorLoader(getActivity(), !pushOnly && supportsSms, cursorFilter);
|
2014-02-07 02:06:23 +00:00
|
|
|
}
|
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
@Override
|
|
|
|
public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
|
|
|
|
((CursorAdapter) listView.getAdapter()).changeCursor(data);
|
|
|
|
emptyText.setText(R.string.contact_selection_group_activity__no_contacts);
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
@Override
|
|
|
|
public void onLoaderReset(Loader<Cursor> loader) {
|
|
|
|
((CursorAdapter) listView.getAdapter()).changeCursor(null);
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
private class ListClickListener implements AdapterView.OnItemClickListener {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> l, View v, int position, long id) {
|
2015-05-19 21:00:54 +00:00
|
|
|
ContactSelectionListItem contact = (ContactSelectionListItem)v;
|
|
|
|
|
|
|
|
if (!multi || !selectedContacts.containsKey(contact.getContactId())) {
|
|
|
|
selectedContacts.put(contact.getContactId(), contact.getNumber());
|
|
|
|
contact.setChecked(true);
|
|
|
|
if (onContactSelectedListener != null) onContactSelectedListener.onContactSelected(contact.getNumber());
|
|
|
|
} else {
|
|
|
|
selectedContacts.remove(contact.getContactId());
|
|
|
|
contact.setChecked(false);
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
public void setOnContactSelectedListener(OnContactSelectedListener onContactSelectedListener) {
|
|
|
|
this.onContactSelectedListener = onContactSelectedListener;
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
|
2015-07-14 21:31:03 +00:00
|
|
|
public void setOnRefreshListener(SwipeRefreshLayout.OnRefreshListener onRefreshListener) {
|
|
|
|
this.swipeRefresh.setOnRefreshListener(onRefreshListener);
|
|
|
|
}
|
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
public interface OnContactSelectedListener {
|
2015-05-19 21:00:54 +00:00
|
|
|
public void onContactSelected(String number);
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|
|
|
|
}
|