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