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;
|
2014-12-15 20:25:55 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2014-06-29 03:40:57 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
2015-07-14 21:31:03 +00:00
|
|
|
import android.view.View;
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2014-12-15 20:25:55 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2014-03-18 06:25:09 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DirectoryHelper;
|
2014-04-09 20:26:06 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DynamicLanguage;
|
2015-07-14 21:31:03 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DynamicNoActionBarTheme;
|
2014-01-19 02:17:08 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
2014-03-18 06:25:09 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2014-02-03 19:52:27 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
protected void onCreate(Bundle icicle, @NonNull MasterSecret masterSecret) {
|
2015-07-14 21:31:03 +00:00
|
|
|
super.onCreate(icicle, masterSecret);
|
2014-03-18 06:25:09 +00:00
|
|
|
contactsFragment.setMultiSelect(true);
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2015-07-14 21:31:03 +00:00
|
|
|
action.setImageDrawable(getResources().getDrawable(R.drawable.ic_check_white_24dp));
|
|
|
|
action.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
Intent resultIntent = getIntent();
|
|
|
|
List<String> selectedContacts = contactsFragment.getSelectedContacts();
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2015-07-14 21:31:03 +00:00
|
|
|
if (selectedContacts != null) {
|
|
|
|
resultIntent.putStringArrayListExtra("contacts", new ArrayList<>(selectedContacts));
|
|
|
|
}
|
2015-05-19 21:00:54 +00:00
|
|
|
|
2015-07-14 21:31:03 +00:00
|
|
|
setResult(RESULT_OK, resultIntent);
|
|
|
|
finish();
|
2014-03-18 06:25:09 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-01-19 02:17:08 +00:00
|
|
|
}
|