session-android/src/org/thoughtcrime/securesms/PushContactSelectionActivity.java

69 lines
2.3 KiB
Java
Raw Normal View History

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;
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;
import android.view.View;
2014-01-19 02:17:08 +00:00
import org.thoughtcrime.securesms.crypto.MasterSecret;
import org.thoughtcrime.securesms.util.DirectoryHelper;
import org.thoughtcrime.securesms.util.DynamicLanguage;
import org.thoughtcrime.securesms.util.DynamicNoActionBarTheme;
2014-01-19 02:17:08 +00:00
import org.thoughtcrime.securesms.util.DynamicTheme;
import org.thoughtcrime.securesms.util.TextSecurePreferences;
2014-01-19 02:17:08 +00:00
import java.util.ArrayList;
import java.util.List;
2014-01-19 02:17:08 +00:00
/**
* Activity container for selecting a list of contacts.
2014-01-19 02:17:08 +00:00
*
* @author Moxie Marlinspike
*
*/
public class PushContactSelectionActivity extends ContactSelectionActivity {
2014-01-19 02:17:08 +00:00
private final static String TAG = PushContactSelectionActivity.class.getSimpleName();
2014-01-19 02:17:08 +00:00
@Override
protected void onCreate(Bundle icicle, @NonNull MasterSecret masterSecret) {
super.onCreate(icicle, masterSecret);
contactsFragment.setMultiSelect(true);
2014-01-19 02:17:08 +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
if (selectedContacts != null) {
resultIntent.putStringArrayListExtra("contacts", new ArrayList<>(selectedContacts));
}
setResult(RESULT_OK, resultIntent);
finish();
}
});
}
2014-01-19 02:17:08 +00:00
}