2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2016-01-13 11:05:59 +00:00
|
|
|
import android.Manifest;
|
2014-09-27 09:46:56 +00:00
|
|
|
import android.annotation.SuppressLint;
|
2014-11-19 16:31:28 +00:00
|
|
|
import android.annotation.TargetApi;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.app.PendingIntent;
|
2016-06-24 13:16:01 +00:00
|
|
|
import android.content.ActivityNotFoundException;
|
2014-10-23 19:27:41 +00:00
|
|
|
import android.content.ClipData;
|
|
|
|
import android.content.ClipboardManager;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.content.ComponentName;
|
|
|
|
import android.content.Context;
|
2019-03-03 07:31:46 +00:00
|
|
|
import android.content.ContextWrapper;
|
2014-05-02 10:02:18 +00:00
|
|
|
import android.content.DialogInterface;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.content.Intent;
|
2014-05-08 12:35:21 +00:00
|
|
|
import android.content.IntentSender.SendIntentException;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.content.ServiceConnection;
|
|
|
|
import android.content.SharedPreferences;
|
2014-09-11 16:02:09 +00:00
|
|
|
import android.content.pm.PackageManager;
|
|
|
|
import android.content.pm.ResolveInfo;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.content.res.Resources;
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
import android.content.res.TypedArray;
|
2018-06-22 15:42:52 +00:00
|
|
|
import android.databinding.DataBindingUtil;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.graphics.Bitmap;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.Point;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
|
|
|
import android.graphics.drawable.Drawable;
|
2016-11-07 09:49:43 +00:00
|
|
|
import android.net.ConnectivityManager;
|
2014-05-02 10:02:18 +00:00
|
|
|
import android.net.Uri;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.os.AsyncTask;
|
2014-11-19 16:31:28 +00:00
|
|
|
import android.os.Build;
|
2014-03-09 12:21:28 +00:00
|
|
|
import android.os.Bundle;
|
2015-02-17 13:18:35 +00:00
|
|
|
import android.os.Handler;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.os.IBinder;
|
2016-01-11 10:17:45 +00:00
|
|
|
import android.os.PowerManager;
|
2015-02-17 13:18:35 +00:00
|
|
|
import android.os.SystemClock;
|
2014-09-08 21:58:37 +00:00
|
|
|
import android.preference.PreferenceManager;
|
2018-05-11 10:42:39 +00:00
|
|
|
import android.support.annotation.BoolRes;
|
2019-01-25 09:07:02 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2018-06-22 15:42:52 +00:00
|
|
|
import android.support.annotation.StringRes;
|
2018-03-11 18:09:35 +00:00
|
|
|
import android.support.v7.app.AlertDialog;
|
|
|
|
import android.support.v7.app.AlertDialog.Builder;
|
2018-03-18 22:32:30 +00:00
|
|
|
import android.support.v7.app.AppCompatDelegate;
|
2014-09-04 09:46:13 +00:00
|
|
|
import android.text.InputType;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.util.DisplayMetrics;
|
2018-02-26 11:03:17 +00:00
|
|
|
import android.util.Log;
|
2018-03-18 22:32:30 +00:00
|
|
|
import android.view.Menu;
|
2014-03-05 14:41:14 +00:00
|
|
|
import android.view.MenuItem;
|
2014-03-03 04:01:02 +00:00
|
|
|
import android.view.View;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.widget.ImageView;
|
2014-11-20 17:20:42 +00:00
|
|
|
import android.widget.Toast;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2018-05-07 09:13:46 +00:00
|
|
|
import java.io.IOException;
|
2014-11-04 11:15:14 +00:00
|
|
|
import java.lang.ref.WeakReference;
|
2014-11-20 17:20:42 +00:00
|
|
|
import java.util.ArrayList;
|
2014-11-04 11:15:14 +00:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.concurrent.RejectedExecutionException;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.R;
|
2017-05-04 11:02:46 +00:00
|
|
|
import eu.siacs.conversations.crypto.PgpEngine;
|
2018-06-22 15:42:52 +00:00
|
|
|
import eu.siacs.conversations.databinding.DialogQuickeditBinding;
|
2014-11-04 11:15:14 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
|
|
|
import eu.siacs.conversations.entities.Presences;
|
|
|
|
import eu.siacs.conversations.services.AvatarService;
|
2016-11-22 21:31:46 +00:00
|
|
|
import eu.siacs.conversations.services.BarcodeProvider;
|
2020-04-19 06:04:36 +00:00
|
|
|
import eu.siacs.conversations.services.QuickConversationsService;
|
2014-11-04 11:15:14 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.XmppConnectionBinder;
|
2019-01-12 20:08:13 +00:00
|
|
|
import eu.siacs.conversations.ui.service.EmojiService;
|
2018-03-18 22:32:30 +00:00
|
|
|
import eu.siacs.conversations.ui.util.MenuDoubleTabUtil;
|
2018-02-20 13:54:32 +00:00
|
|
|
import eu.siacs.conversations.ui.util.PresenceSelector;
|
2018-06-23 07:29:29 +00:00
|
|
|
import eu.siacs.conversations.ui.util.SoftKeyboardUtils;
|
2018-10-09 17:35:33 +00:00
|
|
|
import eu.siacs.conversations.utils.AccountUtils;
|
2014-11-04 11:15:14 +00:00
|
|
|
import eu.siacs.conversations.utils.ExceptionHelper;
|
2018-04-01 19:37:21 +00:00
|
|
|
import eu.siacs.conversations.utils.ThemeHelper;
|
2015-07-21 12:18:16 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnKeyStatusUpdated;
|
2014-12-21 20:43:58 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnUpdateBlocklist;
|
2018-03-05 17:30:40 +00:00
|
|
|
import rocks.xmpp.addr.Jid;
|
2014-11-04 11:15:14 +00:00
|
|
|
|
2018-03-11 18:09:35 +00:00
|
|
|
public abstract class XmppActivity extends ActionBarActivity {
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2017-12-15 15:14:04 +00:00
|
|
|
public static final String EXTRA_ACCOUNT = "account";
|
2014-08-13 09:22:32 +00:00
|
|
|
protected static final int REQUEST_ANNOUNCE_PGP = 0x0101;
|
|
|
|
protected static final int REQUEST_INVITE_TO_CONVERSATION = 0x0102;
|
2015-10-29 13:03:41 +00:00
|
|
|
protected static final int REQUEST_CHOOSE_PGP_ID = 0x0103;
|
2018-02-25 12:22:52 +00:00
|
|
|
protected static final int REQUEST_BATTERY_OP = 0x49ff;
|
2014-01-26 02:27:55 +00:00
|
|
|
public XmppConnectionService xmppConnectionService;
|
|
|
|
public boolean xmppConnectionServiceBound = false;
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2018-03-14 09:07:52 +00:00
|
|
|
protected static final String FRAGMENT_TAG_DIALOG = "dialog";
|
|
|
|
|
2018-03-14 07:21:49 +00:00
|
|
|
private boolean isCameraFeatureAvailable = false;
|
2014-09-28 13:21:56 +00:00
|
|
|
|
2014-12-09 19:22:21 +00:00
|
|
|
protected int mTheme;
|
2015-01-14 20:28:27 +00:00
|
|
|
protected boolean mUsingEnterKey = false;
|
2020-04-19 06:04:36 +00:00
|
|
|
protected boolean mUseTor = false;
|
2016-05-27 18:05:40 +00:00
|
|
|
protected Toast mToast;
|
2018-02-20 13:54:32 +00:00
|
|
|
public Runnable onOpenPGPKeyPublished = () -> Toast.makeText(XmppActivity.this, R.string.openpgp_has_been_published, Toast.LENGTH_SHORT).show();
|
2017-12-15 15:14:04 +00:00
|
|
|
protected ConferenceInvite mPendingConferenceInvite = null;
|
|
|
|
protected ServiceConnection mConnection = new ServiceConnection() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onServiceConnected(ComponentName className, IBinder service) {
|
|
|
|
XmppConnectionBinder binder = (XmppConnectionBinder) service;
|
|
|
|
xmppConnectionService = binder.getService();
|
|
|
|
xmppConnectionServiceBound = true;
|
2018-07-06 18:15:45 +00:00
|
|
|
registerListeners();
|
2017-12-15 15:14:04 +00:00
|
|
|
onBackendConnected();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onServiceDisconnected(ComponentName arg0) {
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private DisplayMetrics metrics;
|
|
|
|
private long mLastUiRefresh = 0;
|
|
|
|
private Handler mRefreshUiHandler = new Handler();
|
|
|
|
private Runnable mRefreshUiRunnable = () -> {
|
|
|
|
mLastUiRefresh = SystemClock.elapsedRealtime();
|
|
|
|
refreshUiReal();
|
|
|
|
};
|
|
|
|
private UiCallback<Conversation> adhocCallback = new UiCallback<Conversation>() {
|
|
|
|
@Override
|
|
|
|
public void success(final Conversation conversation) {
|
|
|
|
runOnUiThread(() -> {
|
|
|
|
switchToConversation(conversation);
|
|
|
|
hideToast();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(final int errorCode, Conversation object) {
|
|
|
|
runOnUiThread(() -> replaceToast(getString(errorCode)));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-06-26 15:40:05 +00:00
|
|
|
public void userInputRequired(PendingIntent pi, Conversation object) {
|
2017-12-15 15:14:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
};
|
2018-02-26 11:03:17 +00:00
|
|
|
public boolean mSkipBackgroundBinding = false;
|
2017-12-15 15:14:04 +00:00
|
|
|
|
|
|
|
public static boolean cancelPotentialWork(Message message, ImageView imageView) {
|
|
|
|
final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
|
|
|
|
|
|
|
|
if (bitmapWorkerTask != null) {
|
|
|
|
final Message oldMessage = bitmapWorkerTask.message;
|
|
|
|
if (oldMessage == null || message != oldMessage) {
|
|
|
|
bitmapWorkerTask.cancel(true);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) {
|
|
|
|
if (imageView != null) {
|
|
|
|
final Drawable drawable = imageView.getDrawable();
|
|
|
|
if (drawable instanceof AsyncDrawable) {
|
|
|
|
final AsyncDrawable asyncDrawable = (AsyncDrawable) drawable;
|
|
|
|
return asyncDrawable.getBitmapWorkerTask();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2016-05-27 18:05:40 +00:00
|
|
|
|
|
|
|
protected void hideToast() {
|
|
|
|
if (mToast != null) {
|
|
|
|
mToast.cancel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void replaceToast(String msg) {
|
2016-07-17 18:31:04 +00:00
|
|
|
replaceToast(msg, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void replaceToast(String msg, boolean showlong) {
|
2016-05-27 18:05:40 +00:00
|
|
|
hideToast();
|
2017-12-15 15:14:04 +00:00
|
|
|
mToast = Toast.makeText(this, msg, showlong ? Toast.LENGTH_LONG : Toast.LENGTH_SHORT);
|
2016-05-27 18:05:40 +00:00
|
|
|
mToast.show();
|
|
|
|
}
|
|
|
|
|
2015-07-20 13:48:58 +00:00
|
|
|
protected final void refreshUi() {
|
2015-02-17 13:18:35 +00:00
|
|
|
final long diff = SystemClock.elapsedRealtime() - mLastUiRefresh;
|
|
|
|
if (diff > Config.REFRESH_UI_INTERVAL) {
|
|
|
|
mRefreshUiHandler.removeCallbacks(mRefreshUiRunnable);
|
|
|
|
runOnUiThread(mRefreshUiRunnable);
|
|
|
|
} else {
|
|
|
|
final long next = Config.REFRESH_UI_INTERVAL - diff;
|
|
|
|
mRefreshUiHandler.removeCallbacks(mRefreshUiRunnable);
|
2017-12-15 15:14:04 +00:00
|
|
|
mRefreshUiHandler.postDelayed(mRefreshUiRunnable, next);
|
2015-02-17 13:18:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-20 13:48:58 +00:00
|
|
|
abstract protected void refreshUiReal();
|
2015-02-17 13:18:35 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
@Override
|
|
|
|
protected void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
if (!xmppConnectionServiceBound) {
|
2018-02-26 11:03:17 +00:00
|
|
|
if (this.mSkipBackgroundBinding) {
|
|
|
|
Log.d(Config.LOGTAG,"skipping background binding");
|
|
|
|
} else {
|
|
|
|
connectToBackend();
|
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
} else {
|
2018-07-06 18:15:45 +00:00
|
|
|
this.registerListeners();
|
2014-11-11 16:39:28 +00:00
|
|
|
this.onBackendConnected();
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
2020-04-19 06:04:36 +00:00
|
|
|
this.mUsingEnterKey = usingEnterKey();
|
|
|
|
this.mUseTor = useTor();
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-19 14:05:01 +00:00
|
|
|
public void connectToBackend() {
|
|
|
|
Intent intent = new Intent(this, XmppConnectionService.class);
|
|
|
|
intent.setAction("ui");
|
2019-01-09 17:30:25 +00:00
|
|
|
try {
|
|
|
|
startService(intent);
|
|
|
|
} catch (IllegalStateException e) {
|
|
|
|
Log.w(Config.LOGTAG,"unable to start service from "+getClass().getSimpleName());
|
|
|
|
}
|
2014-03-19 14:05:01 +00:00
|
|
|
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
super.onStop();
|
|
|
|
if (xmppConnectionServiceBound) {
|
2018-07-06 18:15:45 +00:00
|
|
|
this.unregisterListeners();
|
2014-01-25 18:33:12 +00:00
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
|
|
|
|
2014-03-03 15:39:19 +00:00
|
|
|
public boolean hasPgp() {
|
2014-06-09 19:25:01 +00:00
|
|
|
return xmppConnectionService.getPgpEngine() != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void showInstallPgpDialog() {
|
|
|
|
Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(getString(R.string.openkeychain_required));
|
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
|
|
|
builder.setMessage(getText(R.string.openkeychain_required_long));
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
|
|
|
builder.setNeutralButton(getString(R.string.restart),
|
2017-12-15 15:14:04 +00:00
|
|
|
(dialog, which) -> {
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
2014-05-03 13:24:19 +00:00
|
|
|
}
|
2017-12-15 15:14:04 +00:00
|
|
|
stopService(new Intent(XmppActivity.this,
|
|
|
|
XmppConnectionService.class));
|
|
|
|
finish();
|
2014-06-09 19:25:01 +00:00
|
|
|
});
|
|
|
|
builder.setPositiveButton(getString(R.string.install),
|
2017-12-15 15:14:04 +00:00
|
|
|
(dialog, which) -> {
|
|
|
|
Uri uri = Uri
|
2014-12-21 20:43:58 +00:00
|
|
|
.parse("market://details?id=org.sufficientlysecure.keychain");
|
2017-12-15 15:14:04 +00:00
|
|
|
Intent marketIntent = new Intent(Intent.ACTION_VIEW,
|
|
|
|
uri);
|
|
|
|
PackageManager manager = getApplicationContext()
|
2014-12-21 20:43:58 +00:00
|
|
|
.getPackageManager();
|
2017-12-15 15:14:04 +00:00
|
|
|
List<ResolveInfo> infos = manager
|
2014-12-21 20:43:58 +00:00
|
|
|
.queryIntentActivities(marketIntent, 0);
|
2017-12-15 15:14:04 +00:00
|
|
|
if (infos.size() > 0) {
|
|
|
|
startActivity(marketIntent);
|
|
|
|
} else {
|
|
|
|
uri = Uri.parse("http://www.openkeychain.org/");
|
|
|
|
Intent browserIntent = new Intent(
|
|
|
|
Intent.ACTION_VIEW, uri);
|
|
|
|
startActivity(browserIntent);
|
2014-06-09 19:25:01 +00:00
|
|
|
}
|
2017-12-15 15:14:04 +00:00
|
|
|
finish();
|
2014-06-09 19:25:01 +00:00
|
|
|
});
|
|
|
|
builder.create().show();
|
2014-03-03 15:39:19 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
abstract void onBackendConnected();
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-11-11 16:39:28 +00:00
|
|
|
protected void registerListeners() {
|
|
|
|
if (this instanceof XmppConnectionService.OnConversationUpdate) {
|
|
|
|
this.xmppConnectionService.setOnConversationListChangedListener((XmppConnectionService.OnConversationUpdate) this);
|
|
|
|
}
|
|
|
|
if (this instanceof XmppConnectionService.OnAccountUpdate) {
|
|
|
|
this.xmppConnectionService.setOnAccountListChangedListener((XmppConnectionService.OnAccountUpdate) this);
|
|
|
|
}
|
2015-10-11 11:11:50 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnCaptchaRequested) {
|
|
|
|
this.xmppConnectionService.setOnCaptchaRequestedListener((XmppConnectionService.OnCaptchaRequested) this);
|
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnRosterUpdate) {
|
|
|
|
this.xmppConnectionService.setOnRosterUpdateListener((XmppConnectionService.OnRosterUpdate) this);
|
|
|
|
}
|
2014-11-23 14:19:44 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnMucRosterUpdate) {
|
|
|
|
this.xmppConnectionService.setOnMucRosterUpdateListener((XmppConnectionService.OnMucRosterUpdate) this);
|
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
if (this instanceof OnUpdateBlocklist) {
|
|
|
|
this.xmppConnectionService.setOnUpdateBlocklistListener((OnUpdateBlocklist) this);
|
|
|
|
}
|
2015-07-10 11:28:50 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnShowErrorToast) {
|
|
|
|
this.xmppConnectionService.setOnShowErrorToastListener((XmppConnectionService.OnShowErrorToast) this);
|
|
|
|
}
|
2015-07-21 12:18:16 +00:00
|
|
|
if (this instanceof OnKeyStatusUpdated) {
|
|
|
|
this.xmppConnectionService.setOnKeyStatusUpdatedListener((OnKeyStatusUpdated) this);
|
2015-07-19 16:36:28 +00:00
|
|
|
}
|
2020-04-07 11:15:24 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnJingleRtpConnectionUpdate) {
|
|
|
|
this.xmppConnectionService.setOnRtpConnectionUpdateListener((XmppConnectionService.OnJingleRtpConnectionUpdate) this);
|
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void unregisterListeners() {
|
|
|
|
if (this instanceof XmppConnectionService.OnConversationUpdate) {
|
2018-05-03 12:54:22 +00:00
|
|
|
this.xmppConnectionService.removeOnConversationListChangedListener((XmppConnectionService.OnConversationUpdate) this);
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
|
|
|
if (this instanceof XmppConnectionService.OnAccountUpdate) {
|
2018-05-03 12:54:22 +00:00
|
|
|
this.xmppConnectionService.removeOnAccountListChangedListener((XmppConnectionService.OnAccountUpdate) this);
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
2015-10-11 11:11:50 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnCaptchaRequested) {
|
2018-05-03 12:54:22 +00:00
|
|
|
this.xmppConnectionService.removeOnCaptchaRequestedListener((XmppConnectionService.OnCaptchaRequested) this);
|
2015-10-11 11:11:50 +00:00
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnRosterUpdate) {
|
2018-05-03 12:54:22 +00:00
|
|
|
this.xmppConnectionService.removeOnRosterUpdateListener((XmppConnectionService.OnRosterUpdate) this);
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
2014-11-23 14:19:44 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnMucRosterUpdate) {
|
2018-05-03 12:54:22 +00:00
|
|
|
this.xmppConnectionService.removeOnMucRosterUpdateListener((XmppConnectionService.OnMucRosterUpdate) this);
|
2014-11-23 14:19:44 +00:00
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
if (this instanceof OnUpdateBlocklist) {
|
2018-05-03 12:54:22 +00:00
|
|
|
this.xmppConnectionService.removeOnUpdateBlocklistListener((OnUpdateBlocklist) this);
|
2014-12-21 20:43:58 +00:00
|
|
|
}
|
2015-07-10 11:28:50 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnShowErrorToast) {
|
2018-05-03 12:54:22 +00:00
|
|
|
this.xmppConnectionService.removeOnShowErrorToastListener((XmppConnectionService.OnShowErrorToast) this);
|
2015-07-10 11:28:50 +00:00
|
|
|
}
|
2015-07-21 12:18:16 +00:00
|
|
|
if (this instanceof OnKeyStatusUpdated) {
|
2018-05-03 12:54:22 +00:00
|
|
|
this.xmppConnectionService.removeOnNewKeysAvailableListener((OnKeyStatusUpdated) this);
|
2015-07-19 16:36:28 +00:00
|
|
|
}
|
2020-04-07 11:15:24 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnJingleRtpConnectionUpdate) {
|
|
|
|
this.xmppConnectionService.removeRtpConnectionUpdateListener((XmppConnectionService.OnJingleRtpConnectionUpdate) this);
|
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(final MenuItem item) {
|
2014-03-05 14:41:14 +00:00
|
|
|
switch (item.getItemId()) {
|
2014-11-04 11:15:14 +00:00
|
|
|
case R.id.action_settings:
|
|
|
|
startActivity(new Intent(this, SettingsActivity.class));
|
|
|
|
break;
|
|
|
|
case R.id.action_accounts:
|
2018-10-09 17:35:33 +00:00
|
|
|
AccountUtils.launchManageAccounts(this);
|
2014-11-04 11:15:14 +00:00
|
|
|
break;
|
2018-10-17 20:50:34 +00:00
|
|
|
case R.id.action_account:
|
|
|
|
AccountUtils.launchManageAccount(this);
|
|
|
|
break;
|
2014-11-04 11:15:14 +00:00
|
|
|
case android.R.id.home:
|
|
|
|
finish();
|
|
|
|
break;
|
|
|
|
case R.id.action_show_qr_code:
|
|
|
|
showQrCode();
|
|
|
|
break;
|
2014-03-05 14:41:14 +00:00
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2018-02-20 13:54:32 +00:00
|
|
|
public void selectPresence(final Conversation conversation, final PresenceSelector.OnPresenceSelected listener) {
|
|
|
|
final Contact contact = conversation.getContact();
|
|
|
|
if (!contact.showInRoster()) {
|
|
|
|
showAddToRosterDialog(conversation.getContact());
|
|
|
|
} else {
|
|
|
|
final Presences presences = contact.getPresences();
|
|
|
|
if (presences.size() == 0) {
|
|
|
|
if (!contact.getOption(Contact.Options.TO)
|
|
|
|
&& !contact.getOption(Contact.Options.ASKING)
|
|
|
|
&& contact.getAccount().getStatus() == Account.State.ONLINE) {
|
|
|
|
showAskForPresenceDialog(contact);
|
|
|
|
} else if (!contact.getOption(Contact.Options.TO)
|
|
|
|
|| !contact.getOption(Contact.Options.FROM)) {
|
|
|
|
PresenceSelector.warnMutualPresenceSubscription(this, conversation, listener);
|
|
|
|
} else {
|
|
|
|
conversation.setNextCounterpart(null);
|
|
|
|
listener.onPresenceSelected();
|
|
|
|
}
|
|
|
|
} else if (presences.size() == 1) {
|
|
|
|
String presence = presences.toResourceArray()[0];
|
|
|
|
try {
|
2018-03-05 17:30:40 +00:00
|
|
|
conversation.setNextCounterpart(Jid.of(contact.getJid().getLocal(), contact.getJid().getDomain(), presence));
|
|
|
|
} catch (IllegalArgumentException e) {
|
2018-02-20 13:54:32 +00:00
|
|
|
conversation.setNextCounterpart(null);
|
|
|
|
}
|
|
|
|
listener.onPresenceSelected();
|
|
|
|
} else {
|
|
|
|
PresenceSelector.showPresenceSelectionDialog(this, conversation, listener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-07 11:15:24 +00:00
|
|
|
@SuppressLint("UnsupportedChromeOsCameraSystemFeature")
|
2014-03-09 12:21:28 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2014-09-02 13:51:20 +00:00
|
|
|
metrics = getResources().getDisplayMetrics();
|
2014-03-09 12:21:28 +00:00
|
|
|
ExceptionHelper.init(getApplicationContext());
|
2019-01-12 20:08:13 +00:00
|
|
|
new EmojiService(this).init();
|
2020-04-07 11:15:24 +00:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
|
|
|
|
this.isCameraFeatureAvailable = getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA_ANY);
|
|
|
|
} else {
|
|
|
|
this.isCameraFeatureAvailable = getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA);
|
|
|
|
}
|
2017-07-04 09:01:20 +00:00
|
|
|
this.mTheme = findTheme();
|
2014-12-09 19:22:21 +00:00
|
|
|
setTheme(this.mTheme);
|
2014-09-08 21:58:37 +00:00
|
|
|
}
|
|
|
|
|
2018-03-14 07:21:49 +00:00
|
|
|
protected boolean isCameraFeatureAvailable() {
|
|
|
|
return this.isCameraFeatureAvailable;
|
|
|
|
}
|
|
|
|
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
public boolean isDarkTheme() {
|
2018-04-05 05:40:41 +00:00
|
|
|
return ThemeHelper.isDark(mTheme);
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getThemeResource(int r_attr_name, int r_drawable_def) {
|
2017-12-15 15:14:04 +00:00
|
|
|
int[] attrs = {r_attr_name};
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
TypedArray ta = this.getTheme().obtainStyledAttributes(attrs);
|
|
|
|
|
|
|
|
int res = ta.getResourceId(0, r_drawable_def);
|
|
|
|
ta.recycle();
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2016-03-06 14:53:49 +00:00
|
|
|
protected boolean isOptimizingBattery() {
|
2016-01-11 10:17:45 +00:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
2017-12-14 18:28:52 +00:00
|
|
|
final PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE);
|
2017-12-15 15:14:04 +00:00
|
|
|
return pm != null
|
2017-12-14 18:28:52 +00:00
|
|
|
&& !pm.isIgnoringBatteryOptimizations(getPackageName());
|
2016-01-11 10:17:45 +00:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-07 09:49:43 +00:00
|
|
|
protected boolean isAffectedByDataSaver() {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
2017-12-14 18:28:52 +00:00
|
|
|
final ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
|
|
|
|
return cm != null
|
|
|
|
&& cm.isActiveNetworkMetered()
|
2016-11-07 09:49:43 +00:00
|
|
|
&& cm.getRestrictBackgroundStatus() == ConnectivityManager.RESTRICT_BACKGROUND_STATUS_ENABLED;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-19 06:04:36 +00:00
|
|
|
private boolean usingEnterKey() {
|
2018-06-23 07:29:29 +00:00
|
|
|
return getBooleanPreference("display_enter_key", R.bool.display_enter_key);
|
2015-01-14 20:28:27 +00:00
|
|
|
}
|
|
|
|
|
2020-04-19 06:04:36 +00:00
|
|
|
private boolean useTor() {
|
|
|
|
return QuickConversationsService.isConversations() && getBooleanPreference("use_tor", R.bool.use_tor);
|
|
|
|
}
|
|
|
|
|
2014-09-08 21:58:37 +00:00
|
|
|
protected SharedPreferences getPreferences() {
|
2018-02-21 10:04:48 +00:00
|
|
|
return PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
|
2014-03-09 12:21:28 +00:00
|
|
|
}
|
2014-09-28 13:21:56 +00:00
|
|
|
|
2018-05-11 10:42:39 +00:00
|
|
|
protected boolean getBooleanPreference(String name, @BoolRes int res) {
|
|
|
|
return getPreferences().getBoolean(name, getResources().getBoolean(res));
|
|
|
|
}
|
|
|
|
|
2014-07-11 17:48:41 +00:00
|
|
|
public void switchToConversation(Conversation conversation) {
|
2018-10-19 13:18:36 +00:00
|
|
|
switchToConversation(conversation, null);
|
2014-07-11 17:48:41 +00:00
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2018-04-28 14:32:23 +00:00
|
|
|
public void switchToConversationAndQuote(Conversation conversation, String text) {
|
2018-10-19 13:39:31 +00:00
|
|
|
switchToConversation(conversation, text, true, null, false, false);
|
2018-04-28 14:32:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 13:18:36 +00:00
|
|
|
public void switchToConversation(Conversation conversation, String text) {
|
2018-10-19 13:39:31 +00:00
|
|
|
switchToConversation(conversation, text, false, null, false, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void switchToConversationDoNotAppend(Conversation conversation, String text) {
|
|
|
|
switchToConversation(conversation, text, false, null, false, true);
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void highlightInMuc(Conversation conversation, String nick) {
|
2018-10-19 13:39:31 +00:00
|
|
|
switchToConversation(conversation, null, false, nick, false, false);
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
|
|
|
|
2015-07-21 11:15:59 +00:00
|
|
|
public void privateMsgInMuc(Conversation conversation, String nick) {
|
2018-10-19 13:39:31 +00:00
|
|
|
switchToConversation(conversation, null, false, nick, true, false);
|
2015-07-21 11:15:59 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 13:39:31 +00:00
|
|
|
private void switchToConversation(Conversation conversation, String text, boolean asQuote, String nick, boolean pm, boolean doNotAppend) {
|
2018-03-07 18:05:28 +00:00
|
|
|
Intent intent = new Intent(this, ConversationsActivity.class);
|
|
|
|
intent.setAction(ConversationsActivity.ACTION_VIEW_CONVERSATION);
|
|
|
|
intent.putExtra(ConversationsActivity.EXTRA_CONVERSATION, conversation.getUuid());
|
2014-06-09 19:25:01 +00:00
|
|
|
if (text != null) {
|
2018-09-18 15:03:08 +00:00
|
|
|
intent.putExtra(Intent.EXTRA_TEXT, text);
|
2018-04-28 14:32:23 +00:00
|
|
|
if (asQuote) {
|
2018-09-18 15:03:08 +00:00
|
|
|
intent.putExtra(ConversationsActivity.EXTRA_AS_QUOTE, true);
|
2018-04-28 14:32:23 +00:00
|
|
|
}
|
2014-03-13 20:37:27 +00:00
|
|
|
}
|
2014-11-17 00:54:01 +00:00
|
|
|
if (nick != null) {
|
2018-03-07 18:05:28 +00:00
|
|
|
intent.putExtra(ConversationsActivity.EXTRA_NICK, nick);
|
|
|
|
intent.putExtra(ConversationsActivity.EXTRA_IS_PRIVATE_MESSAGE, pm);
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
2018-10-19 13:39:31 +00:00
|
|
|
if (doNotAppend) {
|
|
|
|
intent.putExtra(ConversationsActivity.EXTRA_DO_NOT_APPEND, true);
|
|
|
|
}
|
2018-10-19 13:18:36 +00:00
|
|
|
intent.setFlags(intent.getFlags() | Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
2018-02-22 21:23:49 +00:00
|
|
|
startActivity(intent);
|
2014-09-27 09:37:02 +00:00
|
|
|
finish();
|
2014-03-13 20:37:27 +00:00
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-07-09 23:55:19 +00:00
|
|
|
public void switchToContactDetails(Contact contact) {
|
2015-07-29 18:21:37 +00:00
|
|
|
switchToContactDetails(contact, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void switchToContactDetails(Contact contact, String messageFingerprint) {
|
2014-07-09 23:55:19 +00:00
|
|
|
Intent intent = new Intent(this, ContactDetailsActivity.class);
|
|
|
|
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
|
2018-03-05 17:30:40 +00:00
|
|
|
intent.putExtra(EXTRA_ACCOUNT, contact.getAccount().getJid().asBareJid().toString());
|
2014-11-06 19:33:13 +00:00
|
|
|
intent.putExtra("contact", contact.getJid().toString());
|
2015-07-29 18:21:37 +00:00
|
|
|
intent.putExtra("fingerprint", messageFingerprint);
|
2014-07-09 23:55:19 +00:00
|
|
|
startActivity(intent);
|
|
|
|
}
|
2014-09-28 13:21:56 +00:00
|
|
|
|
2018-04-26 16:53:09 +00:00
|
|
|
public void switchToAccount(Account account, String fingerprint) {
|
|
|
|
switchToAccount(account, false, fingerprint);
|
|
|
|
}
|
|
|
|
|
2014-09-20 14:02:49 +00:00
|
|
|
public void switchToAccount(Account account) {
|
2018-04-26 16:53:09 +00:00
|
|
|
switchToAccount(account, false, null);
|
2015-10-09 11:37:08 +00:00
|
|
|
}
|
|
|
|
|
2018-04-26 16:53:09 +00:00
|
|
|
public void switchToAccount(Account account, boolean init, String fingerprint) {
|
2014-09-20 14:02:49 +00:00
|
|
|
Intent intent = new Intent(this, EditAccountActivity.class);
|
2018-03-05 17:30:40 +00:00
|
|
|
intent.putExtra("jid", account.getJid().asBareJid().toString());
|
2015-10-09 11:37:08 +00:00
|
|
|
intent.putExtra("init", init);
|
2018-02-09 19:09:58 +00:00
|
|
|
if (init) {
|
|
|
|
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NO_ANIMATION);
|
|
|
|
}
|
2018-04-26 16:53:09 +00:00
|
|
|
if (fingerprint != null) {
|
|
|
|
intent.putExtra("fingerprint", fingerprint);
|
|
|
|
}
|
2014-09-20 14:02:49 +00:00
|
|
|
startActivity(intent);
|
2018-02-10 12:32:37 +00:00
|
|
|
if (init) {
|
|
|
|
overridePendingTransition(0, 0);
|
|
|
|
}
|
2014-09-20 14:02:49 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2018-01-23 21:02:28 +00:00
|
|
|
protected void delegateUriPermissionsToService(Uri uri) {
|
2018-09-05 19:37:05 +00:00
|
|
|
Intent intent = new Intent(this, XmppConnectionService.class);
|
2018-01-23 21:02:28 +00:00
|
|
|
intent.setAction(Intent.ACTION_SEND);
|
|
|
|
intent.setData(uri);
|
|
|
|
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
2018-09-05 19:37:05 +00:00
|
|
|
try {
|
|
|
|
startService(intent);
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(Config.LOGTAG,"unable to delegate uri permission",e);
|
|
|
|
}
|
2018-01-23 21:02:28 +00:00
|
|
|
}
|
|
|
|
|
2014-07-16 22:03:37 +00:00
|
|
|
protected void inviteToConversation(Conversation conversation) {
|
2018-02-27 17:08:09 +00:00
|
|
|
startActivityForResult(ChooseContactActivity.create(this,conversation), REQUEST_INVITE_TO_CONVERSATION);
|
2014-07-16 22:03:37 +00:00
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2018-03-04 10:43:58 +00:00
|
|
|
protected void announcePgp(final Account account, final Conversation conversation, Intent intent, final Runnable onSuccess) {
|
2016-05-05 11:17:04 +00:00
|
|
|
if (account.getPgpId() == 0) {
|
2015-10-29 13:03:41 +00:00
|
|
|
choosePgpSignId(account);
|
|
|
|
} else {
|
2016-05-05 11:17:04 +00:00
|
|
|
String status = null;
|
|
|
|
if (manuallyChangePresence()) {
|
|
|
|
status = account.getPresenceStatusMessage();
|
|
|
|
}
|
|
|
|
if (status == null) {
|
|
|
|
status = "";
|
|
|
|
}
|
2018-03-04 10:43:58 +00:00
|
|
|
xmppConnectionService.getPgpEngine().generateSignature(intent, account, status, new UiCallback<String>() {
|
2015-10-29 13:03:41 +00:00
|
|
|
|
|
|
|
@Override
|
2019-06-26 15:40:05 +00:00
|
|
|
public void userInputRequired(PendingIntent pi, String signature) {
|
2015-10-29 13:03:41 +00:00
|
|
|
try {
|
2016-05-05 11:17:04 +00:00
|
|
|
startIntentSenderForResult(pi.getIntentSender(), REQUEST_ANNOUNCE_PGP, null, 0, 0, 0);
|
2015-10-29 13:03:41 +00:00
|
|
|
} catch (final SendIntentException ignored) {
|
2014-06-09 19:25:01 +00:00
|
|
|
}
|
2015-10-29 13:03:41 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2015-10-29 13:03:41 +00:00
|
|
|
@Override
|
2018-03-04 10:43:58 +00:00
|
|
|
public void success(String signature) {
|
|
|
|
account.setPgpSignature(signature);
|
2015-10-29 13:03:41 +00:00
|
|
|
xmppConnectionService.databaseBackend.updateAccount(account);
|
|
|
|
xmppConnectionService.sendPresence(account);
|
|
|
|
if (conversation != null) {
|
|
|
|
conversation.setNextEncryption(Message.ENCRYPTION_PGP);
|
2016-10-18 11:06:24 +00:00
|
|
|
xmppConnectionService.updateConversation(conversation);
|
2016-06-15 11:52:49 +00:00
|
|
|
refreshUi();
|
2014-06-09 19:25:01 +00:00
|
|
|
}
|
2016-05-05 11:17:04 +00:00
|
|
|
if (onSuccess != null) {
|
|
|
|
runOnUiThread(onSuccess);
|
|
|
|
}
|
2015-10-29 13:03:41 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2015-10-29 13:03:41 +00:00
|
|
|
@Override
|
2018-03-04 10:43:58 +00:00
|
|
|
public void error(int error, String signature) {
|
|
|
|
if (error == 0) {
|
2016-10-19 09:53:55 +00:00
|
|
|
account.setPgpSignId(0);
|
|
|
|
account.unsetPgpSignature();
|
|
|
|
xmppConnectionService.databaseBackend.updateAccount(account);
|
|
|
|
choosePgpSignId(account);
|
|
|
|
} else {
|
|
|
|
displayErrorDialog(error);
|
|
|
|
}
|
2015-10-29 13:03:41 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-22 19:25:06 +00:00
|
|
|
@SuppressWarnings("deprecation")
|
|
|
|
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
|
|
|
|
protected void setListItemBackgroundOnView(View view) {
|
|
|
|
int sdk = android.os.Build.VERSION.SDK_INT;
|
|
|
|
if (sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
|
|
|
|
view.setBackgroundDrawable(getResources().getDrawable(R.drawable.greybackground));
|
|
|
|
} else {
|
|
|
|
view.setBackground(getResources().getDrawable(R.drawable.greybackground));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-29 13:03:41 +00:00
|
|
|
protected void choosePgpSignId(Account account) {
|
|
|
|
xmppConnectionService.getPgpEngine().chooseKey(account, new UiCallback<Account>() {
|
|
|
|
@Override
|
|
|
|
public void success(Account account1) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(int errorCode, Account object) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-06-26 15:40:05 +00:00
|
|
|
public void userInputRequired(PendingIntent pi, Account object) {
|
2015-10-29 13:03:41 +00:00
|
|
|
try {
|
|
|
|
startIntentSenderForResult(pi.getIntentSender(),
|
|
|
|
REQUEST_CHOOSE_PGP_ID, null, 0, 0, 0);
|
|
|
|
} catch (final SendIntentException ignored) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-05-12 12:59:46 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-12 12:59:46 +00:00
|
|
|
protected void displayErrorDialog(final int errorCode) {
|
2017-12-15 15:14:04 +00:00
|
|
|
runOnUiThread(() -> {
|
|
|
|
Builder builder = new Builder(XmppActivity.this);
|
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
|
|
|
builder.setTitle(getString(R.string.error));
|
|
|
|
builder.setMessage(errorCode);
|
|
|
|
builder.setNeutralButton(R.string.accept, null);
|
|
|
|
builder.create().show();
|
2014-05-08 12:35:21 +00:00
|
|
|
});
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-08 12:35:21 +00:00
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2015-01-21 14:31:40 +00:00
|
|
|
protected void showAddToRosterDialog(final Contact contact) {
|
2014-06-16 12:21:22 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2015-01-21 14:31:40 +00:00
|
|
|
builder.setTitle(contact.getJid().toString());
|
2014-06-16 12:21:22 +00:00
|
|
|
builder.setMessage(getString(R.string.not_in_roster));
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
2018-02-27 20:11:00 +00:00
|
|
|
builder.setPositiveButton(getString(R.string.add_contact), (dialog, which) -> xmppConnectionService.createContact(contact,true));
|
2014-06-16 12:21:22 +00:00
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-09-05 11:29:45 +00:00
|
|
|
private void showAskForPresenceDialog(final Contact contact) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-11-06 19:33:13 +00:00
|
|
|
builder.setTitle(contact.getJid().toString());
|
2014-09-05 11:29:45 +00:00
|
|
|
builder.setMessage(R.string.request_presence_updates);
|
2014-09-08 10:46:48 +00:00
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.request_now,
|
2017-12-15 15:14:04 +00:00
|
|
|
(dialog, which) -> {
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
xmppConnectionService.sendPresencePacket(contact
|
|
|
|
.getAccount(), xmppConnectionService
|
|
|
|
.getPresenceGenerator()
|
|
|
|
.requestPresenceUpdatesFrom(contact));
|
2014-09-05 11:29:45 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-09-08 21:58:37 +00:00
|
|
|
|
2018-06-22 15:42:52 +00:00
|
|
|
protected void quickEdit(String previousValue, @StringRes int hint, OnValueEdited callback) {
|
2018-06-10 17:12:46 +00:00
|
|
|
quickEdit(previousValue, callback, hint, false, false);
|
|
|
|
}
|
|
|
|
|
2018-06-22 15:42:52 +00:00
|
|
|
protected void quickEdit(String previousValue, @StringRes int hint, OnValueEdited callback, boolean permitEmpty) {
|
2018-06-10 17:12:46 +00:00
|
|
|
quickEdit(previousValue, callback, hint, false, permitEmpty);
|
2014-09-04 09:46:13 +00:00
|
|
|
}
|
|
|
|
|
2016-05-22 16:20:57 +00:00
|
|
|
protected void quickPasswordEdit(String previousValue, OnValueEdited callback) {
|
2018-06-10 17:12:46 +00:00
|
|
|
quickEdit(previousValue, callback, R.string.password, true, false);
|
2014-09-04 09:46:13 +00:00
|
|
|
}
|
|
|
|
|
2014-09-27 09:46:56 +00:00
|
|
|
@SuppressLint("InflateParams")
|
2014-09-04 09:46:13 +00:00
|
|
|
private void quickEdit(final String previousValue,
|
2017-12-15 15:14:04 +00:00
|
|
|
final OnValueEdited callback,
|
2018-06-22 15:42:52 +00:00
|
|
|
final @StringRes int hint,
|
2018-06-10 17:12:46 +00:00
|
|
|
boolean password,
|
|
|
|
boolean permitEmpty) {
|
2014-07-16 10:34:09 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2018-06-22 15:42:52 +00:00
|
|
|
DialogQuickeditBinding binding = DataBindingUtil.inflate(getLayoutInflater(),R.layout.dialog_quickedit, null, false);
|
2014-09-04 09:46:13 +00:00
|
|
|
if (password) {
|
2018-06-22 15:42:52 +00:00
|
|
|
binding.inputEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
|
2014-09-04 09:46:13 +00:00
|
|
|
}
|
2018-01-09 09:30:32 +00:00
|
|
|
builder.setPositiveButton(R.string.accept, null);
|
2016-05-22 16:20:57 +00:00
|
|
|
if (hint != 0) {
|
2018-06-22 15:42:52 +00:00
|
|
|
binding.inputLayout.setHint(getString(hint));
|
2016-05-22 16:20:57 +00:00
|
|
|
}
|
2018-06-22 15:42:52 +00:00
|
|
|
binding.inputEditText.requestFocus();
|
2016-05-22 16:20:57 +00:00
|
|
|
if (previousValue != null) {
|
2018-06-22 15:42:52 +00:00
|
|
|
binding.inputEditText.getText().append(previousValue);
|
2016-05-22 16:20:57 +00:00
|
|
|
}
|
2018-06-22 15:42:52 +00:00
|
|
|
builder.setView(binding.getRoot());
|
2014-09-04 09:46:13 +00:00
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
2017-12-09 17:46:21 +00:00
|
|
|
final AlertDialog dialog = builder.create();
|
2018-06-23 07:29:29 +00:00
|
|
|
dialog.setOnShowListener(d -> SoftKeyboardUtils.showKeyboard(binding.inputEditText));
|
2017-12-09 17:46:21 +00:00
|
|
|
dialog.show();
|
2017-12-15 15:14:04 +00:00
|
|
|
View.OnClickListener clickListener = v -> {
|
2018-06-22 15:42:52 +00:00
|
|
|
String value = binding.inputEditText.getText().toString();
|
2018-06-10 17:12:46 +00:00
|
|
|
if (!value.equals(previousValue) && (!value.trim().isEmpty() || permitEmpty)) {
|
2017-12-15 15:14:04 +00:00
|
|
|
String error = callback.onValueEdited(value);
|
|
|
|
if (error != null) {
|
2018-06-22 15:42:52 +00:00
|
|
|
binding.inputLayout.setError(error);
|
2017-12-15 15:14:04 +00:00
|
|
|
return;
|
2017-12-09 17:46:21 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-23 07:29:29 +00:00
|
|
|
SoftKeyboardUtils.hideSoftKeyboard(binding.inputEditText);
|
2017-12-15 15:14:04 +00:00
|
|
|
dialog.dismiss();
|
2017-12-09 17:46:21 +00:00
|
|
|
};
|
|
|
|
dialog.getButton(DialogInterface.BUTTON_POSITIVE).setOnClickListener(clickListener);
|
2018-06-23 07:29:29 +00:00
|
|
|
dialog.getButton(DialogInterface.BUTTON_NEGATIVE).setOnClickListener((v -> {
|
|
|
|
SoftKeyboardUtils.hideSoftKeyboard(binding.inputEditText);
|
|
|
|
dialog.dismiss();
|
|
|
|
}));
|
2018-11-09 17:52:42 +00:00
|
|
|
dialog.setCanceledOnTouchOutside(false);
|
2018-06-23 07:29:29 +00:00
|
|
|
dialog.setOnDismissListener(dialog1 -> {
|
|
|
|
SoftKeyboardUtils.hideSoftKeyboard(binding.inputEditText);
|
|
|
|
});
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2018-02-25 08:46:44 +00:00
|
|
|
protected boolean hasStoragePermission(int requestCode) {
|
2016-01-13 11:05:59 +00:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
|
|
|
if (checkSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
|
|
|
|
requestPermissions(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, requestCode);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-28 20:58:37 +00:00
|
|
|
protected void onActivityResult(int requestCode, int resultCode, final Intent data) {
|
2014-07-16 22:03:37 +00:00
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
2015-05-12 02:33:04 +00:00
|
|
|
if (requestCode == REQUEST_INVITE_TO_CONVERSATION && resultCode == RESULT_OK) {
|
|
|
|
mPendingConferenceInvite = ConferenceInvite.parse(data);
|
|
|
|
if (xmppConnectionServiceBound && mPendingConferenceInvite != null) {
|
2016-06-28 08:34:43 +00:00
|
|
|
if (mPendingConferenceInvite.execute(this)) {
|
|
|
|
mToast = Toast.makeText(this, R.string.creating_conference, Toast.LENGTH_LONG);
|
|
|
|
mToast.show();
|
|
|
|
}
|
2015-05-12 02:33:04 +00:00
|
|
|
mPendingConferenceInvite = null;
|
2014-07-16 22:03:37 +00:00
|
|
|
}
|
2015-03-17 14:00:50 +00:00
|
|
|
}
|
2014-07-16 22:03:37 +00:00
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-11-04 11:15:14 +00:00
|
|
|
public boolean copyTextToClipboard(String text, int labelResId) {
|
2014-10-23 19:27:41 +00:00
|
|
|
ClipboardManager mClipBoardManager = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
|
|
|
|
String label = getResources().getString(labelResId);
|
|
|
|
if (mClipBoardManager != null) {
|
|
|
|
ClipData mClipData = ClipData.newPlainText(label, text);
|
|
|
|
mClipBoardManager.setPrimaryClip(mClipData);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-10-20 19:08:33 +00:00
|
|
|
|
2016-04-22 19:25:06 +00:00
|
|
|
protected boolean manuallyChangePresence() {
|
2018-06-23 07:29:29 +00:00
|
|
|
return getBooleanPreference(SettingsActivity.MANUALLY_CHANGE_PRESENCE, R.bool.manually_change_presence);
|
2016-04-22 19:25:06 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 11:15:14 +00:00
|
|
|
protected String getShareableUri() {
|
2017-09-19 14:28:01 +00:00
|
|
|
return getShareableUri(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected String getShareableUri(boolean http) {
|
2014-11-04 11:15:14 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-09-19 14:28:01 +00:00
|
|
|
protected void shareLink(boolean http) {
|
|
|
|
String uri = getShareableUri(http);
|
2016-06-24 13:16:01 +00:00
|
|
|
if (uri == null || uri.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-09-19 14:28:01 +00:00
|
|
|
Intent intent = new Intent(Intent.ACTION_SEND);
|
|
|
|
intent.setType("text/plain");
|
2017-12-15 15:14:04 +00:00
|
|
|
intent.putExtra(Intent.EXTRA_TEXT, getShareableUri(http));
|
2016-06-24 13:16:01 +00:00
|
|
|
try {
|
2017-09-19 14:28:01 +00:00
|
|
|
startActivity(Intent.createChooser(intent, getText(R.string.share_uri_with)));
|
2016-06-24 13:16:01 +00:00
|
|
|
} catch (ActivityNotFoundException e) {
|
|
|
|
Toast.makeText(this, R.string.no_application_to_share_uri, Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-04 11:02:46 +00:00
|
|
|
protected void launchOpenKeyChain(long keyId) {
|
|
|
|
PgpEngine pgp = XmppActivity.this.xmppConnectionService.getPgpEngine();
|
|
|
|
try {
|
|
|
|
startIntentSenderForResult(
|
|
|
|
pgp.getIntentForKey(keyId).getIntentSender(), 0, null, 0,
|
|
|
|
0, 0);
|
|
|
|
} catch (Throwable e) {
|
2017-12-15 15:14:04 +00:00
|
|
|
Toast.makeText(XmppActivity.this, R.string.openpgp_error, Toast.LENGTH_SHORT).show();
|
2017-05-04 11:02:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-04 16:10:35 +00:00
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
}
|
|
|
|
|
2014-12-09 19:22:21 +00:00
|
|
|
protected int findTheme() {
|
2018-04-01 19:37:21 +00:00
|
|
|
return ThemeHelper.find(this);
|
2014-12-09 19:22:21 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 16:10:35 +00:00
|
|
|
@Override
|
|
|
|
public void onPause() {
|
|
|
|
super.onPause();
|
|
|
|
}
|
|
|
|
|
2018-03-18 22:32:30 +00:00
|
|
|
@Override
|
|
|
|
public boolean onMenuOpened(int id, Menu menu) {
|
|
|
|
if(id == AppCompatDelegate.FEATURE_SUPPORT_ACTION_BAR && menu != null) {
|
|
|
|
MenuDoubleTabUtil.recordMenuOpen();
|
|
|
|
}
|
|
|
|
return super.onMenuOpened(id, menu);
|
|
|
|
}
|
|
|
|
|
2014-11-04 11:15:14 +00:00
|
|
|
protected void showQrCode() {
|
2018-02-25 07:33:04 +00:00
|
|
|
showQrCode(getShareableUri());
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void showQrCode(final String uri) {
|
2017-09-19 14:28:01 +00:00
|
|
|
if (uri == null || uri.isEmpty()) {
|
|
|
|
return;
|
2014-11-04 11:15:14 +00:00
|
|
|
}
|
2017-09-19 14:28:01 +00:00
|
|
|
Point size = new Point();
|
|
|
|
getWindowManager().getDefaultDisplay().getSize(size);
|
|
|
|
final int width = (size.x < size.y ? size.x : size.y);
|
|
|
|
Bitmap bitmap = BarcodeProvider.create2dBarcodeBitmap(uri, width);
|
|
|
|
ImageView view = new ImageView(this);
|
|
|
|
view.setBackgroundColor(Color.WHITE);
|
|
|
|
view.setImageBitmap(bitmap);
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setView(view);
|
|
|
|
builder.create().show();
|
2014-11-04 11:15:14 +00:00
|
|
|
}
|
|
|
|
|
2016-01-22 19:21:45 +00:00
|
|
|
protected Account extractAccount(Intent intent) {
|
2020-04-07 11:15:24 +00:00
|
|
|
final String jid = intent != null ? intent.getStringExtra(EXTRA_ACCOUNT) : null;
|
2016-01-22 19:21:45 +00:00
|
|
|
try {
|
2018-03-05 17:30:40 +00:00
|
|
|
return jid != null ? xmppConnectionService.findAccountByJid(Jid.of(jid)) : null;
|
|
|
|
} catch (IllegalArgumentException e) {
|
2016-01-22 19:21:45 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-15 15:14:04 +00:00
|
|
|
public AvatarService avatarService() {
|
|
|
|
return xmppConnectionService.getAvatarService();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void loadBitmap(Message message, ImageView imageView) {
|
|
|
|
Bitmap bm;
|
|
|
|
try {
|
|
|
|
bm = xmppConnectionService.getFileBackend().getThumbnail(message, (int) (metrics.density * 288), true);
|
2018-05-07 09:13:46 +00:00
|
|
|
} catch (IOException e) {
|
2017-12-15 15:14:04 +00:00
|
|
|
bm = null;
|
|
|
|
}
|
|
|
|
if (bm != null) {
|
|
|
|
cancelPotentialWork(message, imageView);
|
|
|
|
imageView.setImageBitmap(bm);
|
|
|
|
imageView.setBackgroundColor(0x00000000);
|
|
|
|
} else {
|
|
|
|
if (cancelPotentialWork(message, imageView)) {
|
|
|
|
imageView.setBackgroundColor(0xff333333);
|
|
|
|
imageView.setImageDrawable(null);
|
2019-01-24 11:27:57 +00:00
|
|
|
final BitmapWorkerTask task = new BitmapWorkerTask(imageView);
|
2017-12-15 15:14:04 +00:00
|
|
|
final AsyncDrawable asyncDrawable = new AsyncDrawable(
|
|
|
|
getResources(), null, task);
|
|
|
|
imageView.setImageDrawable(asyncDrawable);
|
|
|
|
try {
|
|
|
|
task.execute(message);
|
|
|
|
} catch (final RejectedExecutionException ignored) {
|
|
|
|
ignored.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected interface OnValueEdited {
|
|
|
|
String onValueEdited(String value);
|
|
|
|
}
|
|
|
|
|
2015-05-12 02:33:04 +00:00
|
|
|
public static class ConferenceInvite {
|
|
|
|
private String uuid;
|
|
|
|
private List<Jid> jids = new ArrayList<>();
|
|
|
|
|
|
|
|
public static ConferenceInvite parse(Intent data) {
|
|
|
|
ConferenceInvite invite = new ConferenceInvite();
|
2018-06-24 09:23:10 +00:00
|
|
|
invite.uuid = data.getStringExtra(ChooseContactActivity.EXTRA_CONVERSATION);
|
2015-05-12 02:33:04 +00:00
|
|
|
if (invite.uuid == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2018-06-24 09:23:10 +00:00
|
|
|
invite.jids.addAll(ChooseContactActivity.extractJabberIds(data));
|
2015-05-12 02:33:04 +00:00
|
|
|
return invite;
|
|
|
|
}
|
|
|
|
|
2016-06-28 08:34:43 +00:00
|
|
|
public boolean execute(XmppActivity activity) {
|
2015-05-12 02:33:04 +00:00
|
|
|
XmppConnectionService service = activity.xmppConnectionService;
|
|
|
|
Conversation conversation = service.findConversationByUuid(this.uuid);
|
|
|
|
if (conversation == null) {
|
2016-06-28 08:34:43 +00:00
|
|
|
return false;
|
2015-05-12 02:33:04 +00:00
|
|
|
}
|
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
|
|
|
for (Jid jid : jids) {
|
|
|
|
service.invite(conversation, jid);
|
|
|
|
}
|
2016-06-28 08:34:43 +00:00
|
|
|
return false;
|
2015-05-12 02:33:04 +00:00
|
|
|
} else {
|
2018-03-05 17:30:40 +00:00
|
|
|
jids.add(conversation.getJid().asBareJid());
|
2017-02-13 16:32:26 +00:00
|
|
|
return service.createAdhocConference(conversation.getAccount(), null, jids, activity.adhocCallback);
|
2015-05-12 02:33:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-15 15:14:04 +00:00
|
|
|
static class BitmapWorkerTask extends AsyncTask<Message, Void, Bitmap> {
|
2014-09-02 13:51:20 +00:00
|
|
|
private final WeakReference<ImageView> imageViewReference;
|
|
|
|
private Message message = null;
|
|
|
|
|
2019-01-24 11:27:57 +00:00
|
|
|
private BitmapWorkerTask(ImageView imageView) {
|
2017-12-15 15:14:04 +00:00
|
|
|
this.imageViewReference = new WeakReference<>(imageView);
|
2014-09-02 13:51:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Bitmap doInBackground(Message... params) {
|
2016-04-28 18:14:53 +00:00
|
|
|
if (isCancelled()) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-09-02 13:51:20 +00:00
|
|
|
message = params[0];
|
|
|
|
try {
|
2019-01-24 11:27:57 +00:00
|
|
|
final XmppActivity activity = find(imageViewReference);
|
2017-12-15 15:14:04 +00:00
|
|
|
if (activity != null && activity.xmppConnectionService != null) {
|
|
|
|
return activity.xmppConnectionService.getFileBackend().getThumbnail(message, (int) (activity.metrics.density * 288), false);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2018-05-07 09:13:46 +00:00
|
|
|
} catch (IOException e) {
|
2014-09-02 13:51:20 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-10-24 18:00:56 +00:00
|
|
|
protected void onPostExecute(final Bitmap bitmap) {
|
|
|
|
if (!isCancelled()) {
|
2014-09-02 13:51:20 +00:00
|
|
|
final ImageView imageView = imageViewReference.get();
|
|
|
|
if (imageView != null) {
|
|
|
|
imageView.setImageBitmap(bitmap);
|
2018-10-24 18:00:56 +00:00
|
|
|
imageView.setBackgroundColor(bitmap == null ? 0xff333333 : 0x00000000);
|
2014-09-02 13:51:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-15 15:14:04 +00:00
|
|
|
private static class AsyncDrawable extends BitmapDrawable {
|
2014-09-02 13:51:20 +00:00
|
|
|
private final WeakReference<BitmapWorkerTask> bitmapWorkerTaskReference;
|
|
|
|
|
2017-12-15 15:14:04 +00:00
|
|
|
private AsyncDrawable(Resources res, Bitmap bitmap, BitmapWorkerTask bitmapWorkerTask) {
|
2014-09-02 13:51:20 +00:00
|
|
|
super(res, bitmap);
|
2017-12-15 15:14:04 +00:00
|
|
|
bitmapWorkerTaskReference = new WeakReference<>(bitmapWorkerTask);
|
2014-09-02 13:51:20 +00:00
|
|
|
}
|
|
|
|
|
2017-12-15 15:14:04 +00:00
|
|
|
private BitmapWorkerTask getBitmapWorkerTask() {
|
2014-09-02 13:51:20 +00:00
|
|
|
return bitmapWorkerTaskReference.get();
|
|
|
|
}
|
|
|
|
}
|
2019-01-24 11:27:57 +00:00
|
|
|
|
2019-01-25 09:07:02 +00:00
|
|
|
public static XmppActivity find(@NonNull WeakReference<ImageView> viewWeakReference) {
|
2019-01-24 11:27:57 +00:00
|
|
|
final View view = viewWeakReference.get();
|
2019-01-25 09:07:02 +00:00
|
|
|
return view == null ? null : find(view);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static XmppActivity find(@NonNull final View view) {
|
2019-03-03 07:31:46 +00:00
|
|
|
Context context = view.getContext();
|
|
|
|
while (context instanceof ContextWrapper) {
|
|
|
|
if (context instanceof XmppActivity) {
|
|
|
|
return (XmppActivity) context;
|
|
|
|
}
|
|
|
|
context = ((ContextWrapper)context).getBaseContext();
|
2019-01-24 11:27:57 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|