2018-02-01 19:22:48 -08:00
|
|
|
/*
|
2015-07-14 14:31:03 -07:00
|
|
|
* Copyright (C) 2015 Open Whisper Systems
|
2014-02-13 01:35:08 -08:00
|
|
|
*
|
|
|
|
* 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;
|
2015-07-20 17:29:41 -07:00
|
|
|
import android.os.Bundle;
|
2015-11-16 15:25:39 -08:00
|
|
|
import android.view.Menu;
|
2015-07-20 17:29:41 -07:00
|
|
|
import android.view.MenuItem;
|
2022-09-27 16:40:27 -03:00
|
|
|
import android.view.ViewGroup;
|
2014-02-13 01:35:08 -08:00
|
|
|
|
2022-09-27 16:40:27 -03:00
|
|
|
import androidx.activity.result.ActivityResultLauncher;
|
|
|
|
import androidx.activity.result.contract.ActivityResultContracts;
|
2022-02-24 13:40:28 -04:00
|
|
|
import androidx.annotation.NonNull;
|
2022-09-27 16:40:27 -03:00
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import androidx.annotation.StringRes;
|
2020-07-17 10:23:51 -04:00
|
|
|
import androidx.appcompat.app.AlertDialog;
|
2022-09-27 16:40:27 -03:00
|
|
|
import androidx.lifecycle.ViewModelProvider;
|
2022-10-16 02:34:56 +02:00
|
|
|
import androidx.recyclerview.widget.RecyclerView;
|
2020-07-17 10:23:51 -04:00
|
|
|
|
2022-09-27 16:40:27 -03:00
|
|
|
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
|
|
|
|
import com.google.android.material.snackbar.Snackbar;
|
|
|
|
|
|
|
|
import org.signal.core.util.DimensionUnit;
|
|
|
|
import org.signal.core.util.concurrent.SimpleTask;
|
2020-12-04 18:31:58 -05:00
|
|
|
import org.signal.core.util.logging.Log;
|
2022-09-27 16:40:27 -03:00
|
|
|
import org.thoughtcrime.securesms.components.menu.ActionItem;
|
|
|
|
import org.thoughtcrime.securesms.components.menu.SignalContextMenu;
|
|
|
|
import org.thoughtcrime.securesms.contacts.ContactSelectionListItem;
|
|
|
|
import org.thoughtcrime.securesms.contacts.management.ContactsManagementRepository;
|
|
|
|
import org.thoughtcrime.securesms.contacts.management.ContactsManagementViewModel;
|
2022-03-18 13:33:23 -04:00
|
|
|
import org.thoughtcrime.securesms.contacts.sync.ContactDiscovery;
|
2020-11-25 11:36:33 -04:00
|
|
|
import org.thoughtcrime.securesms.conversation.ConversationIntents;
|
2021-11-18 12:36:52 -05:00
|
|
|
import org.thoughtcrime.securesms.database.SignalDatabase;
|
2020-05-13 13:41:36 -03:00
|
|
|
import org.thoughtcrime.securesms.groups.ui.creategroup.CreateGroupActivity;
|
2020-07-17 10:23:51 -04:00
|
|
|
import org.thoughtcrime.securesms.jobmanager.impl.NetworkConstraint;
|
2021-11-17 15:08:28 -05:00
|
|
|
import org.thoughtcrime.securesms.keyvalue.SignalStore;
|
2017-08-01 08:56:00 -07:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2019-11-04 12:38:02 -05:00
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientId;
|
2022-09-27 16:40:27 -03:00
|
|
|
import org.thoughtcrime.securesms.util.CommunicationActions;
|
|
|
|
import org.thoughtcrime.securesms.util.FeatureFlags;
|
|
|
|
import org.thoughtcrime.securesms.util.LifecycleDisposable;
|
2022-10-13 11:33:13 -04:00
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
2020-07-17 10:23:51 -04:00
|
|
|
import org.thoughtcrime.securesms.util.views.SimpleProgressDialog;
|
2014-02-13 01:35:08 -08:00
|
|
|
|
2020-07-17 10:23:51 -04:00
|
|
|
import java.io.IOException;
|
2022-09-27 16:40:27 -03:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Objects;
|
2022-03-14 15:49:46 -04:00
|
|
|
import java.util.Optional;
|
2021-07-23 16:22:08 -04:00
|
|
|
import java.util.function.Consumer;
|
2022-09-27 16:40:27 -03:00
|
|
|
import java.util.stream.Collectors;
|
|
|
|
import java.util.stream.Stream;
|
2020-07-17 10:23:51 -04:00
|
|
|
|
2014-02-13 01:35:08 -08:00
|
|
|
/**
|
2015-07-14 14:31:03 -07:00
|
|
|
* Activity container for starting a new conversation.
|
2014-02-13 01:35:08 -08:00
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*/
|
2019-08-26 19:49:16 +01:00
|
|
|
public class NewConversationActivity extends ContactSelectionActivity
|
2022-09-27 16:40:27 -03:00
|
|
|
implements ContactSelectionListFragment.ListCallback, ContactSelectionListFragment.OnItemLongClickListener
|
2019-08-26 19:49:16 +01:00
|
|
|
{
|
2014-03-17 23:25:09 -07:00
|
|
|
|
2018-02-01 19:22:48 -08:00
|
|
|
@SuppressWarnings("unused")
|
2021-03-29 18:37:22 -04:00
|
|
|
private static final String TAG = Log.tag(NewConversationActivity.class);
|
2014-03-17 23:25:09 -07:00
|
|
|
|
2022-09-27 16:40:27 -03:00
|
|
|
private ContactsManagementViewModel viewModel;
|
|
|
|
private ActivityResultLauncher<Intent> contactLauncher;
|
|
|
|
|
|
|
|
private final LifecycleDisposable disposables = new LifecycleDisposable();
|
|
|
|
|
2015-07-20 17:29:41 -07:00
|
|
|
@Override
|
2018-02-01 19:22:48 -08:00
|
|
|
public void onCreate(Bundle bundle, boolean ready) {
|
2018-02-01 19:36:09 -08:00
|
|
|
super.onCreate(bundle, ready);
|
2018-02-01 19:22:48 -08:00
|
|
|
assert getSupportActionBar() != null;
|
2015-07-20 17:29:41 -07:00
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
2021-07-12 15:44:59 -03:00
|
|
|
getSupportActionBar().setTitle(R.string.NewConversationActivity__new_message);
|
2022-09-27 16:40:27 -03:00
|
|
|
|
|
|
|
disposables.bindTo(this);
|
|
|
|
|
|
|
|
ContactsManagementRepository repository = new ContactsManagementRepository(this);
|
|
|
|
ContactsManagementViewModel.Factory factory = new ContactsManagementViewModel.Factory(repository);
|
|
|
|
|
|
|
|
contactLauncher = registerForActivityResult(new ActivityResultContracts.StartActivityForResult(), activityResult -> {
|
|
|
|
if (activityResult.getResultCode() == RESULT_OK) {
|
|
|
|
handleManualRefresh();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
viewModel = new ViewModelProvider(this, factory).get(ContactsManagementViewModel.class);
|
2015-07-20 17:29:41 -07:00
|
|
|
}
|
|
|
|
|
2014-03-17 23:25:09 -07:00
|
|
|
@Override
|
2022-02-24 13:40:28 -04:00
|
|
|
public void onBeforeContactSelected(@NonNull Optional<RecipientId> recipientId, String number, @NonNull Consumer<Boolean> callback) {
|
2022-10-20 15:50:38 -04:00
|
|
|
boolean smsSupported = SignalStore.misc().getSmsExportPhase().allowSmsFeatures();
|
2022-10-13 11:33:13 -04:00
|
|
|
|
2019-11-04 12:38:02 -05:00
|
|
|
if (recipientId.isPresent()) {
|
2020-07-17 10:23:51 -04:00
|
|
|
launch(Recipient.resolved(recipientId.get()));
|
2019-11-04 12:38:02 -05:00
|
|
|
} else {
|
|
|
|
Log.i(TAG, "[onContactSelected] Maybe creating a new recipient.");
|
2020-09-23 09:21:55 -04:00
|
|
|
|
2022-10-13 11:33:13 -04:00
|
|
|
if (SignalStore.account().isRegistered()) {
|
2020-09-23 09:21:55 -04:00
|
|
|
Log.i(TAG, "[onContactSelected] Doing contact refresh.");
|
2020-07-17 10:23:51 -04:00
|
|
|
|
|
|
|
AlertDialog progress = SimpleProgressDialog.show(this);
|
|
|
|
|
|
|
|
SimpleTask.run(getLifecycle(), () -> {
|
|
|
|
Recipient resolved = Recipient.external(this, number);
|
|
|
|
|
2022-02-17 15:55:54 -05:00
|
|
|
if (!resolved.isRegistered() || !resolved.hasServiceId()) {
|
2020-09-23 09:21:55 -04:00
|
|
|
Log.i(TAG, "[onContactSelected] Not registered or no UUID. Doing a directory refresh.");
|
2020-07-17 10:23:51 -04:00
|
|
|
try {
|
2022-03-18 13:33:23 -04:00
|
|
|
ContactDiscovery.refresh(this, resolved, false);
|
2020-07-17 10:23:51 -04:00
|
|
|
resolved = Recipient.resolved(resolved.getId());
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w(TAG, "[onContactSelected] Failed to refresh directory for new contact.");
|
2022-10-13 11:33:13 -04:00
|
|
|
return null;
|
2020-07-17 10:23:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolved;
|
|
|
|
}, resolved -> {
|
|
|
|
progress.dismiss();
|
2022-10-13 11:33:13 -04:00
|
|
|
|
|
|
|
if (resolved != null) {
|
|
|
|
if (smsSupported || resolved.isRegistered() && resolved.hasServiceId()) {
|
|
|
|
launch(resolved);
|
|
|
|
} else {
|
|
|
|
new MaterialAlertDialogBuilder(this)
|
|
|
|
.setMessage(getString(R.string.NewConversationActivity__s_is_not_a_signal_user, resolved.getDisplayName(this)))
|
|
|
|
.setPositiveButton(android.R.string.ok, null)
|
|
|
|
.show();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
new MaterialAlertDialogBuilder(this)
|
|
|
|
.setMessage(R.string.NetworkFailure__network_error_check_your_connection_and_try_again)
|
|
|
|
.setPositiveButton(android.R.string.ok, null)
|
|
|
|
.show();
|
|
|
|
}
|
2020-07-17 10:23:51 -04:00
|
|
|
});
|
2022-10-13 11:33:13 -04:00
|
|
|
} else if (smsSupported) {
|
2020-07-17 10:23:51 -04:00
|
|
|
launch(Recipient.external(this, number));
|
|
|
|
}
|
2019-11-04 12:38:02 -05:00
|
|
|
}
|
2020-07-29 23:04:35 -04:00
|
|
|
|
2021-07-23 16:22:08 -04:00
|
|
|
callback.accept(true);
|
2019-10-28 20:16:11 -04:00
|
|
|
}
|
2014-02-16 17:44:51 -08:00
|
|
|
|
2021-07-12 15:44:59 -03:00
|
|
|
@Override
|
|
|
|
public void onSelectionChanged() {
|
|
|
|
}
|
|
|
|
|
2019-10-28 20:16:11 -04:00
|
|
|
private void launch(Recipient recipient) {
|
2021-11-18 12:36:52 -05:00
|
|
|
long existingThread = SignalDatabase.threads().getThreadIdIfExistsFor(recipient.getId());
|
2020-11-25 11:36:33 -04:00
|
|
|
Intent intent = ConversationIntents.createBuilder(this, recipient.getId(), existingThread)
|
|
|
|
.withDraftText(getIntent().getStringExtra(Intent.EXTRA_TEXT))
|
|
|
|
.withDataUri(getIntent().getData())
|
|
|
|
.withDataType(getIntent().getType())
|
|
|
|
.build();
|
2015-07-14 14:31:03 -07:00
|
|
|
|
2015-11-18 12:54:40 -08:00
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
2014-02-13 01:35:08 -08:00
|
|
|
}
|
2015-07-14 14:31:03 -07:00
|
|
|
|
2015-07-20 17:29:41 -07:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
super.onOptionsItemSelected(item);
|
|
|
|
|
|
|
|
switch (item.getItemId()) {
|
2022-09-27 16:40:27 -03:00
|
|
|
case android.R.id.home:
|
|
|
|
super.onBackPressed();
|
|
|
|
return true;
|
|
|
|
case R.id.menu_refresh:
|
|
|
|
handleManualRefresh();
|
|
|
|
return true;
|
|
|
|
case R.id.menu_new_group:
|
|
|
|
handleCreateGroup();
|
|
|
|
return true;
|
|
|
|
case R.id.menu_invite:
|
|
|
|
handleInvite();
|
|
|
|
return true;
|
2015-07-20 17:29:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-16 15:25:39 -08:00
|
|
|
private void handleManualRefresh() {
|
|
|
|
contactsFragment.setRefreshing(true);
|
|
|
|
onRefresh();
|
|
|
|
}
|
|
|
|
|
2020-06-05 20:19:03 -03:00
|
|
|
private void handleCreateGroup() {
|
|
|
|
startActivity(CreateGroupActivity.newIntent(this));
|
2016-03-28 13:09:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void handleInvite() {
|
|
|
|
startActivity(new Intent(this, InviteActivity.class));
|
|
|
|
}
|
|
|
|
|
2015-11-16 15:25:39 -08:00
|
|
|
@Override
|
2020-08-29 10:45:11 -04:00
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
2015-11-16 15:25:39 -08:00
|
|
|
menu.clear();
|
2020-05-13 13:41:36 -03:00
|
|
|
getMenuInflater().inflate(R.menu.new_conversation_activity, menu);
|
|
|
|
|
2020-08-29 10:45:11 -04:00
|
|
|
super.onCreateOptionsMenu(menu);
|
2015-11-16 15:25:39 -08:00
|
|
|
return true;
|
|
|
|
}
|
2019-08-26 19:49:16 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onInvite() {
|
|
|
|
handleInvite();
|
2020-04-24 10:13:07 -03:00
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-05-29 15:19:47 -03:00
|
|
|
public void onNewGroup(boolean forceV1) {
|
2020-06-05 20:19:03 -03:00
|
|
|
handleCreateGroup();
|
2020-04-24 10:13:07 -03:00
|
|
|
finish();
|
2019-08-26 19:49:16 +01:00
|
|
|
}
|
2022-09-27 16:40:27 -03:00
|
|
|
|
|
|
|
@Override
|
2022-10-16 02:34:56 +02:00
|
|
|
public boolean onLongClick(ContactSelectionListItem contactSelectionListItem, RecyclerView recyclerView) {
|
2022-09-27 16:40:27 -03:00
|
|
|
RecipientId recipientId = contactSelectionListItem.getRecipientId().orElse(null);
|
|
|
|
if (recipientId == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
List<ActionItem> actions = generateContextualActionsForRecipient(recipientId);
|
|
|
|
if (actions.isEmpty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
new SignalContextMenu.Builder(contactSelectionListItem, (ViewGroup) contactSelectionListItem.getRootView())
|
|
|
|
.preferredVerticalPosition(SignalContextMenu.VerticalPosition.BELOW)
|
|
|
|
.preferredHorizontalPosition(SignalContextMenu.HorizontalPosition.START)
|
|
|
|
.offsetX((int) DimensionUnit.DP.toPixels(12))
|
|
|
|
.offsetY((int) DimensionUnit.DP.toPixels(12))
|
2022-10-16 02:34:56 +02:00
|
|
|
.onDismiss(() -> recyclerView.suppressLayout(false))
|
2022-09-27 16:40:27 -03:00
|
|
|
.show(actions);
|
|
|
|
|
2022-10-16 02:34:56 +02:00
|
|
|
recyclerView.suppressLayout(true);
|
|
|
|
|
2022-09-27 16:40:27 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private @NonNull List<ActionItem> generateContextualActionsForRecipient(@NonNull RecipientId recipientId) {
|
|
|
|
Recipient recipient = Recipient.resolved(recipientId);
|
|
|
|
|
|
|
|
return Stream.of(
|
|
|
|
createMessageActionItem(recipient),
|
|
|
|
createAudioCallActionItem(recipient),
|
|
|
|
createVideoCallActionItem(recipient),
|
|
|
|
createRemoveActionItem(recipient),
|
|
|
|
createBlockActionItem(recipient)
|
|
|
|
).filter(Objects::nonNull).collect(Collectors.toList());
|
|
|
|
}
|
|
|
|
|
|
|
|
private @NonNull ActionItem createMessageActionItem(@NonNull Recipient recipient) {
|
|
|
|
return new ActionItem(
|
2022-10-04 15:43:24 -03:00
|
|
|
R.drawable.ic_chat_message_24,
|
2022-09-27 16:40:27 -03:00
|
|
|
getString(R.string.NewConversationActivity__message),
|
|
|
|
R.color.signal_colorOnSurface,
|
|
|
|
() -> startActivity(ConversationIntents.createBuilder(this, recipient.getId(), -1L).build())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private @Nullable ActionItem createAudioCallActionItem(@NonNull Recipient recipient) {
|
|
|
|
if (recipient.isSelf() || recipient.isGroup()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-10-20 15:50:38 -04:00
|
|
|
if (recipient.isRegistered() || (SignalStore.misc().getSmsExportPhase().allowSmsFeatures())) {
|
2022-10-13 11:33:13 -04:00
|
|
|
return new ActionItem(
|
|
|
|
R.drawable.ic_phone_right_24,
|
|
|
|
getString(R.string.NewConversationActivity__audio_call),
|
|
|
|
R.color.signal_colorOnSurface,
|
|
|
|
() -> CommunicationActions.startVoiceCall(this, recipient)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2022-09-27 16:40:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
private @Nullable ActionItem createVideoCallActionItem(@NonNull Recipient recipient) {
|
2022-10-13 11:33:13 -04:00
|
|
|
if (recipient.isSelf() || recipient.isMmsGroup() || !recipient.isRegistered()) {
|
2022-09-27 16:40:27 -03:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new ActionItem(
|
|
|
|
R.drawable.ic_video_call_24,
|
|
|
|
getString(R.string.NewConversationActivity__video_call),
|
|
|
|
R.color.signal_colorOnSurface,
|
|
|
|
() -> CommunicationActions.startVideoCall(this, recipient)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private @Nullable ActionItem createRemoveActionItem(@NonNull Recipient recipient) {
|
|
|
|
if (!FeatureFlags.hideContacts() || recipient.isSelf() || recipient.isGroup()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new ActionItem(
|
|
|
|
R.drawable.ic_minus_circle_20, // TODO [alex] -- correct asset
|
|
|
|
getString(R.string.NewConversationActivity__remove),
|
|
|
|
R.color.signal_colorOnSurface,
|
|
|
|
() -> {
|
|
|
|
if (recipient.isSystemContact()) {
|
|
|
|
displayIsInSystemContactsDialog(recipient);
|
|
|
|
} else {
|
|
|
|
displayRemovalDialog(recipient);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("CodeBlock2Expr")
|
|
|
|
private @Nullable ActionItem createBlockActionItem(@NonNull Recipient recipient) {
|
|
|
|
if (recipient.isSelf()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new ActionItem(
|
|
|
|
R.drawable.ic_block_tinted_24,
|
|
|
|
getString(R.string.NewConversationActivity__block),
|
|
|
|
R.color.signal_colorError,
|
|
|
|
() -> BlockUnblockDialog.showBlockFor(this,
|
|
|
|
this.getLifecycle(),
|
|
|
|
recipient,
|
|
|
|
() -> {
|
|
|
|
disposables.add(viewModel.blockContact(recipient).subscribe(() -> {
|
|
|
|
displaySnackbar(R.string.NewConversationActivity__s_has_been_removed);
|
|
|
|
}));
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void displayIsInSystemContactsDialog(@NonNull Recipient recipient) {
|
|
|
|
new MaterialAlertDialogBuilder(this)
|
|
|
|
.setTitle(getString(R.string.NewConversationActivity__unable_to_remove_s, recipient.getShortDisplayName(this)))
|
|
|
|
.setMessage(R.string.NewConversationActivity__this_person_is_saved_to_your)
|
|
|
|
.setPositiveButton(R.string.NewConversationActivity__view_contact,
|
|
|
|
(dialog, which) -> contactLauncher.launch(new Intent(Intent.ACTION_VIEW, recipient.getContactUri()))
|
|
|
|
)
|
|
|
|
.setNegativeButton(android.R.string.cancel, null)
|
|
|
|
.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void displayRemovalDialog(@NonNull Recipient recipient) {
|
|
|
|
new MaterialAlertDialogBuilder(this)
|
|
|
|
.setTitle(getString(R.string.NewConversationActivity__remove_s, recipient.getShortDisplayName(this)))
|
|
|
|
.setMessage(R.string.NewConversationActivity__you_wont_see_this_person)
|
|
|
|
.setPositiveButton(R.string.NewConversationActivity__remove,
|
|
|
|
(dialog, which) -> {
|
|
|
|
disposables.add(viewModel.hideContact(recipient).subscribe(() -> {
|
|
|
|
displaySnackbar(R.string.NewConversationActivity__s_has_been_removed);
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.setNegativeButton(android.R.string.cancel, null)
|
|
|
|
.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void displaySnackbar(@StringRes int message) {
|
|
|
|
Snackbar.make(findViewById(android.R.id.content), message, Snackbar.LENGTH_SHORT).show();
|
|
|
|
}
|
2014-02-13 01:35:08 -08:00
|
|
|
}
|