2018-02-01 19:22:48 -08:00
|
|
|
/*
|
2014-01-18 18:17:08 -08:00
|
|
|
* Copyright (C) 2011 Whisper Systems
|
|
|
|
*
|
|
|
|
* 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.content.Intent;
|
|
|
|
import android.os.Bundle;
|
|
|
|
|
2020-05-11 16:19:26 +10:00
|
|
|
import org.thoughtcrime.securesms.loki.fragments.ContactSelectionListFragment;
|
2020-04-15 12:52:23 +10:00
|
|
|
|
2014-02-03 11:52:27 -08:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
2019-07-24 12:30:23 +10:00
|
|
|
import network.loki.messenger.R;
|
|
|
|
|
2014-01-18 18:17:08 -08:00
|
|
|
/**
|
2014-03-17 23:25:09 -07:00
|
|
|
* Activity container for selecting a list of contacts.
|
2014-01-18 18:17:08 -08:00
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
2015-07-14 14:31:03 -07:00
|
|
|
public class PushContactSelectionActivity extends ContactSelectionActivity {
|
2014-01-18 18:17:08 -08:00
|
|
|
|
2018-02-01 19:22:48 -08:00
|
|
|
@SuppressWarnings("unused")
|
2015-07-14 14:31:03 -07:00
|
|
|
private final static String TAG = PushContactSelectionActivity.class.getSimpleName();
|
2014-01-18 18:17:08 -08:00
|
|
|
|
2014-12-15 12:25:55 -08:00
|
|
|
@Override
|
2018-02-01 19:22:48 -08:00
|
|
|
protected void onCreate(Bundle icicle, boolean ready) {
|
2015-10-19 11:23:12 -07:00
|
|
|
getIntent().putExtra(ContactSelectionListFragment.MULTI_SELECT, true);
|
2018-02-01 19:22:48 -08:00
|
|
|
super.onCreate(icicle, ready);
|
2014-01-18 18:17:08 -08:00
|
|
|
|
2015-10-19 11:23:12 -07:00
|
|
|
getToolbar().setNavigationIcon(R.drawable.ic_check_white_24dp);
|
2018-02-01 19:22:48 -08:00
|
|
|
getToolbar().setNavigationOnClickListener(v -> {
|
|
|
|
Intent resultIntent = getIntent();
|
|
|
|
List<String> selectedContacts = contactsFragment.getSelectedContacts();
|
|
|
|
|
|
|
|
if (selectedContacts != null) {
|
|
|
|
resultIntent.putStringArrayListExtra("contacts", new ArrayList<>(selectedContacts));
|
2014-03-17 23:25:09 -07:00
|
|
|
}
|
2018-02-01 19:22:48 -08:00
|
|
|
|
|
|
|
setResult(RESULT_OK, resultIntent);
|
|
|
|
finish();
|
2014-03-17 23:25:09 -07:00
|
|
|
});
|
|
|
|
}
|
2014-01-18 18:17:08 -08:00
|
|
|
}
|