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;
|
2014-12-15 12:25:55 -08:00
|
|
|
import android.support.annotation.NonNull;
|
2014-06-28 20:40:57 -07:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
2015-07-14 14:31:03 -07:00
|
|
|
import android.view.View;
|
2014-01-18 18:17:08 -08:00
|
|
|
|
2014-12-15 12:25:55 -08:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2014-03-17 23:25:09 -07:00
|
|
|
import org.thoughtcrime.securesms.util.DirectoryHelper;
|
2014-04-09 13:26:06 -07:00
|
|
|
import org.thoughtcrime.securesms.util.DynamicLanguage;
|
2015-07-14 14:31:03 -07:00
|
|
|
import org.thoughtcrime.securesms.util.DynamicNoActionBarTheme;
|
2014-01-18 18:17:08 -08:00
|
|
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
2014-03-17 23:25:09 -07:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2014-01-18 18:17:08 -08:00
|
|
|
|
2014-02-03 11:52:27 -08:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
protected void onCreate(Bundle icicle, @NonNull MasterSecret masterSecret) {
|
2015-07-14 14:31:03 -07:00
|
|
|
super.onCreate(icicle, masterSecret);
|
2014-03-17 23:25:09 -07:00
|
|
|
contactsFragment.setMultiSelect(true);
|
2014-01-18 18:17:08 -08:00
|
|
|
|
2015-07-14 14:31:03 -07: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-18 18:17:08 -08:00
|
|
|
|
2015-07-14 14:31:03 -07:00
|
|
|
if (selectedContacts != null) {
|
|
|
|
resultIntent.putStringArrayListExtra("contacts", new ArrayList<>(selectedContacts));
|
|
|
|
}
|
2015-05-19 14:00:54 -07:00
|
|
|
|
2015-07-14 14:31:03 -07:00
|
|
|
setResult(RESULT_OK, resultIntent);
|
|
|
|
finish();
|
2014-03-17 23:25:09 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-01-18 18:17:08 -08:00
|
|
|
}
|