2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-09-02 13:51:20 +00:00
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.lang.ref.WeakReference;
|
|
|
|
import java.util.concurrent.RejectedExecutionException;
|
|
|
|
|
2014-08-31 14:28:21 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-03-05 14:41:14 +00:00
|
|
|
import eu.siacs.conversations.R;
|
2014-05-08 12:35:21 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-06-16 12:21:22 +00:00
|
|
|
import eu.siacs.conversations.entities.Contact;
|
2014-03-13 20:37:27 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2014-05-08 14:52:19 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
2014-06-16 12:21:22 +00:00
|
|
|
import eu.siacs.conversations.entities.Presences;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.XmppConnectionBinder;
|
2014-03-09 12:21:28 +00:00
|
|
|
import eu.siacs.conversations.utils.ExceptionHelper;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.app.Activity;
|
2014-03-03 15:39:19 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-05-08 12:35:21 +00:00
|
|
|
import android.app.PendingIntent;
|
2014-03-03 15:39:19 +00:00
|
|
|
import android.app.AlertDialog.Builder;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.content.ComponentName;
|
|
|
|
import android.content.Context;
|
2014-05-02 10:02:18 +00:00
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.DialogInterface.OnClickListener;
|
2014-05-08 12:35:21 +00:00
|
|
|
import android.content.IntentSender.SendIntentException;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.content.res.Resources;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.ServiceConnection;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
|
|
|
import android.graphics.drawable.Drawable;
|
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-03-09 12:21:28 +00:00
|
|
|
import android.os.Bundle;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.os.IBinder;
|
2014-09-04 09:46:13 +00:00
|
|
|
import android.text.InputType;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.util.DisplayMetrics;
|
2014-07-16 22:03:37 +00:00
|
|
|
import android.util.Log;
|
2014-03-05 14:41:14 +00:00
|
|
|
import android.view.MenuItem;
|
2014-03-03 04:01:02 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2014-07-16 10:34:09 +00:00
|
|
|
import android.widget.EditText;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.widget.ImageView;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public abstract class XmppActivity extends Activity {
|
2014-06-09 19:25:01 +00:00
|
|
|
|
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;
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-26 02:27:55 +00:00
|
|
|
public XmppConnectionService xmppConnectionService;
|
|
|
|
public boolean xmppConnectionServiceBound = false;
|
2014-01-25 18:33:12 +00:00
|
|
|
protected boolean handledViewIntent = false;
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-22 13:31:54 +00:00
|
|
|
protected int mPrimaryTextColor;
|
|
|
|
protected int mSecondaryTextColor;
|
2014-07-31 13:09:34 +00:00
|
|
|
protected int mWarningTextColor;
|
|
|
|
protected int mPrimaryColor;
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-09-02 13:51:20 +00:00
|
|
|
private DisplayMetrics metrics;
|
2014-09-04 09:46:13 +00:00
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
protected interface OnValueEdited {
|
|
|
|
public void onValueEdited(String value);
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-16 22:03:37 +00:00
|
|
|
public interface OnPresenceSelected {
|
|
|
|
public void onPresenceSelected();
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
protected ServiceConnection mConnection = new ServiceConnection() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onServiceConnected(ComponentName className, IBinder service) {
|
|
|
|
XmppConnectionBinder binder = (XmppConnectionBinder) service;
|
|
|
|
xmppConnectionService = binder.getService();
|
|
|
|
xmppConnectionServiceBound = true;
|
2014-01-27 19:40:42 +00:00
|
|
|
onBackendConnected();
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onServiceDisconnected(ComponentName arg0) {
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
};
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
@Override
|
|
|
|
protected void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
if (!xmppConnectionServiceBound) {
|
2014-03-19 14:05:01 +00:00
|
|
|
connectToBackend();
|
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");
|
|
|
|
startService(intent);
|
|
|
|
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) {
|
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-03 04:01:02 +00:00
|
|
|
protected void hideKeyboard() {
|
|
|
|
InputMethodManager inputManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
|
|
|
|
View focus = getCurrentFocus();
|
|
|
|
|
|
|
|
if (focus != null) {
|
|
|
|
|
2014-06-09 19:25:01 +00:00
|
|
|
inputManager.hideSoftInputFromWindow(focus.getWindowToken(),
|
2014-03-03 04:01:02 +00:00
|
|
|
InputMethodManager.HIDE_NOT_ALWAYS);
|
|
|
|
}
|
|
|
|
}
|
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),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
stopService(new Intent(XmppActivity.this,
|
|
|
|
XmppConnectionService.class));
|
|
|
|
finish();
|
2014-05-03 13:24:19 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
});
|
|
|
|
builder.setPositiveButton(getString(R.string.install),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
Uri uri = Uri
|
|
|
|
.parse("market://details?id=org.sufficientlysecure.keychain");
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
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-03-05 14:41:14 +00:00
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.action_settings:
|
|
|
|
startActivity(new Intent(this, SettingsActivity.class));
|
|
|
|
break;
|
|
|
|
case R.id.action_accounts:
|
|
|
|
startActivity(new Intent(this, ManageAccountActivity.class));
|
|
|
|
break;
|
2014-08-15 15:31:24 +00:00
|
|
|
case android.R.id.home:
|
|
|
|
finish();
|
|
|
|
break;
|
2014-03-05 14:41:14 +00:00
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
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());
|
2014-07-22 13:31:54 +00:00
|
|
|
mPrimaryTextColor = getResources().getColor(R.color.primarytext);
|
|
|
|
mSecondaryTextColor = getResources().getColor(R.color.secondarytext);
|
2014-07-31 13:09:34 +00:00
|
|
|
mWarningTextColor = getResources().getColor(R.color.warningtext);
|
|
|
|
mPrimaryColor = getResources().getColor(R.color.primary);
|
2014-03-09 12:21:28 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-07-11 17:48:41 +00:00
|
|
|
public void switchToConversation(Conversation conversation) {
|
|
|
|
switchToConversation(conversation, null, false);
|
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-06-09 19:25:01 +00:00
|
|
|
public void switchToConversation(Conversation conversation, String text,
|
|
|
|
boolean newTask) {
|
2014-03-13 20:37:27 +00:00
|
|
|
Intent viewConversationIntent = new Intent(this,
|
|
|
|
ConversationActivity.class);
|
|
|
|
viewConversationIntent.setAction(Intent.ACTION_VIEW);
|
|
|
|
viewConversationIntent.putExtra(ConversationActivity.CONVERSATION,
|
|
|
|
conversation.getUuid());
|
2014-06-09 19:25:01 +00:00
|
|
|
if (text != null) {
|
2014-03-13 20:37:27 +00:00
|
|
|
viewConversationIntent.putExtra(ConversationActivity.TEXT, text);
|
|
|
|
}
|
|
|
|
viewConversationIntent.setType(ConversationActivity.VIEW_CONVERSATION);
|
2014-05-21 14:43:19 +00:00
|
|
|
if (newTask) {
|
2014-05-31 17:33:46 +00:00
|
|
|
viewConversationIntent.setFlags(viewConversationIntent.getFlags()
|
2014-06-09 19:25:01 +00:00
|
|
|
| Intent.FLAG_ACTIVITY_NEW_TASK
|
|
|
|
| Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
2014-05-21 14:43:19 +00:00
|
|
|
} else {
|
|
|
|
viewConversationIntent.setFlags(viewConversationIntent.getFlags()
|
2014-06-09 19:25:01 +00:00
|
|
|
| Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
2014-05-21 14:43:19 +00:00
|
|
|
}
|
2014-03-13 20:37:27 +00:00
|
|
|
startActivity(viewConversationIntent);
|
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-07-09 23:55:19 +00:00
|
|
|
public void switchToContactDetails(Contact contact) {
|
|
|
|
Intent intent = new Intent(this, ContactDetailsActivity.class);
|
|
|
|
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
|
|
|
|
intent.putExtra("account", contact.getAccount().getJid());
|
|
|
|
intent.putExtra("contact", contact.getJid());
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-07-16 22:03:37 +00:00
|
|
|
protected void inviteToConversation(Conversation conversation) {
|
2014-08-15 15:31:24 +00:00
|
|
|
Intent intent = new Intent(getApplicationContext(),
|
|
|
|
ChooseContactActivity.class);
|
|
|
|
intent.putExtra("conversation", conversation.getUuid());
|
2014-07-16 22:03:37 +00:00
|
|
|
startActivityForResult(intent, REQUEST_INVITE_TO_CONVERSATION);
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-06-07 11:25:27 +00:00
|
|
|
protected void announcePgp(Account account, final Conversation conversation) {
|
2014-06-09 19:25:01 +00:00
|
|
|
xmppConnectionService.getPgpEngine().generateSignature(account,
|
|
|
|
"online", new UiCallback<Account>() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi,
|
|
|
|
Account account) {
|
|
|
|
try {
|
|
|
|
startIntentSenderForResult(pi.getIntentSender(),
|
|
|
|
REQUEST_ANNOUNCE_PGP, null, 0, 0, 0);
|
2014-08-15 15:31:24 +00:00
|
|
|
} catch (SendIntentException e) {
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void success(Account account) {
|
|
|
|
xmppConnectionService.databaseBackend
|
|
|
|
.updateAccount(account);
|
2014-07-12 01:44:23 +00:00
|
|
|
xmppConnectionService.sendPresencePacket(account,
|
|
|
|
xmppConnectionService.getPresenceGenerator()
|
|
|
|
.sendPresence(account));
|
2014-06-09 19:25:01 +00:00
|
|
|
if (conversation != null) {
|
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_PGP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(int error, Account account) {
|
|
|
|
displayErrorDialog(error);
|
|
|
|
}
|
|
|
|
});
|
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) {
|
|
|
|
runOnUiThread(new Runnable() {
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-12 12:59:46 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-06-09 19:25:01 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(
|
|
|
|
XmppActivity.this);
|
2014-05-12 12:59:46 +00:00
|
|
|
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
|
|
|
|
2014-06-16 12:21:22 +00:00
|
|
|
protected void showAddToRosterDialog(final Conversation conversation) {
|
|
|
|
String jid = conversation.getContactJid();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(jid);
|
|
|
|
builder.setMessage(getString(R.string.not_in_roster));
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
|
|
|
builder.setPositiveButton(getString(R.string.add_contact),
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
String jid = conversation.getContactJid();
|
|
|
|
Account account = conversation.getAccount();
|
|
|
|
Contact contact = account.getRoster().getContact(jid);
|
|
|
|
xmppConnectionService.createContact(contact);
|
2014-07-21 14:16:09 +00:00
|
|
|
switchToContactDetails(contact);
|
2014-06-16 12:21:22 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-09-04 09:46:13 +00:00
|
|
|
protected void quickEdit(String previousValue, OnValueEdited callback) {
|
|
|
|
quickEdit(previousValue, callback, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void quickPasswordEdit(String previousValue,
|
|
|
|
OnValueEdited callback) {
|
|
|
|
quickEdit(previousValue, callback, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void quickEdit(final String previousValue,
|
|
|
|
final OnValueEdited callback, boolean password) {
|
2014-07-16 10:34:09 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-08-15 15:31:24 +00:00
|
|
|
View view = (View) getLayoutInflater()
|
|
|
|
.inflate(R.layout.quickedit, null);
|
2014-07-16 10:34:09 +00:00
|
|
|
final EditText editor = (EditText) view.findViewById(R.id.editor);
|
2014-09-04 09:46:13 +00:00
|
|
|
OnClickListener mClickListener = new OnClickListener() {
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
String value = editor.getText().toString();
|
|
|
|
if (!previousValue.equals(value) && value.trim().length() > 0) {
|
|
|
|
callback.onValueEdited(value);
|
|
|
|
}
|
|
|
|
}
|
2014-09-04 09:46:13 +00:00
|
|
|
};
|
|
|
|
if (password) {
|
|
|
|
editor.setInputType(InputType.TYPE_CLASS_TEXT
|
|
|
|
| InputType.TYPE_TEXT_VARIATION_PASSWORD);
|
|
|
|
editor.setHint(R.string.password);
|
|
|
|
builder.setPositiveButton(R.string.accept, mClickListener);
|
|
|
|
} else {
|
|
|
|
builder.setPositiveButton(R.string.edit, mClickListener);
|
|
|
|
}
|
|
|
|
editor.requestFocus();
|
|
|
|
editor.setText(previousValue);
|
|
|
|
builder.setView(view);
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
2014-07-16 10:34:09 +00:00
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-06-16 12:21:22 +00:00
|
|
|
public void selectPresence(final Conversation conversation,
|
|
|
|
final OnPresenceSelected listener) {
|
|
|
|
Contact contact = conversation.getContact();
|
2014-08-09 09:36:28 +00:00
|
|
|
if (!contact.showInRoster()) {
|
2014-06-16 12:21:22 +00:00
|
|
|
showAddToRosterDialog(conversation);
|
|
|
|
} else {
|
|
|
|
Presences presences = contact.getPresences();
|
|
|
|
if (presences.size() == 0) {
|
|
|
|
conversation.setNextPresence(null);
|
|
|
|
listener.onPresenceSelected();
|
|
|
|
} else if (presences.size() == 1) {
|
|
|
|
String presence = (String) presences.asStringArray()[0];
|
|
|
|
conversation.setNextPresence(presence);
|
|
|
|
listener.onPresenceSelected();
|
|
|
|
} else {
|
|
|
|
final StringBuilder presence = new StringBuilder();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(getString(R.string.choose_presence));
|
|
|
|
final String[] presencesArray = presences.asStringArray();
|
|
|
|
int preselectedPresence = 0;
|
|
|
|
for (int i = 0; i < presencesArray.length; ++i) {
|
|
|
|
if (presencesArray[i].equals(contact.lastseen.presence)) {
|
|
|
|
preselectedPresence = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
presence.append(presencesArray[preselectedPresence]);
|
|
|
|
builder.setSingleChoiceItems(presencesArray,
|
|
|
|
preselectedPresence,
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
|
|
|
int which) {
|
|
|
|
presence.delete(0, presence.length());
|
|
|
|
presence.append(presencesArray[which]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.ok, new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
conversation.setNextPresence(presence.toString());
|
|
|
|
listener.onPresenceSelected();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-16 22:03:37 +00:00
|
|
|
protected void onActivityResult(int requestCode, int resultCode,
|
|
|
|
final Intent data) {
|
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
2014-08-15 15:31:24 +00:00
|
|
|
if (requestCode == REQUEST_INVITE_TO_CONVERSATION
|
|
|
|
&& resultCode == RESULT_OK) {
|
2014-07-16 22:03:37 +00:00
|
|
|
String contactJid = data.getStringExtra("contact");
|
|
|
|
String conversationUuid = data.getStringExtra("conversation");
|
2014-08-15 15:31:24 +00:00
|
|
|
Conversation conversation = xmppConnectionService
|
|
|
|
.findConversationByUuid(conversationUuid);
|
2014-07-16 22:03:37 +00:00
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
2014-07-21 14:04:53 +00:00
|
|
|
xmppConnectionService.invite(conversation, contactJid);
|
2014-07-16 22:03:37 +00:00
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "inviting " + contactJid + " to "
|
2014-09-02 14:00:03 +00:00
|
|
|
+ conversation.getName());
|
2014-07-16 22:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-22 13:31:54 +00:00
|
|
|
public int getSecondaryTextColor() {
|
|
|
|
return this.mSecondaryTextColor;
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-22 13:31:54 +00:00
|
|
|
public int getPrimaryTextColor() {
|
|
|
|
return this.mPrimaryTextColor;
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-31 13:09:34 +00:00
|
|
|
public int getWarningTextColor() {
|
|
|
|
return this.mWarningTextColor;
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-31 13:09:34 +00:00
|
|
|
public int getPrimaryColor() {
|
|
|
|
return this.mPrimaryColor;
|
|
|
|
}
|
2014-09-04 09:46:13 +00:00
|
|
|
|
2014-09-02 13:51:20 +00:00
|
|
|
class BitmapWorkerTask extends AsyncTask<Message, Void, Bitmap> {
|
|
|
|
private final WeakReference<ImageView> imageViewReference;
|
|
|
|
private Message message = null;
|
|
|
|
|
|
|
|
public BitmapWorkerTask(ImageView imageView) {
|
|
|
|
imageViewReference = new WeakReference<ImageView>(imageView);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Bitmap doInBackground(Message... params) {
|
|
|
|
message = params[0];
|
|
|
|
try {
|
|
|
|
return xmppConnectionService.getFileBackend().getThumbnail(
|
|
|
|
message, (int) (metrics.density * 288), false);
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Bitmap bitmap) {
|
|
|
|
if (imageViewReference != null && bitmap != null) {
|
|
|
|
final ImageView imageView = imageViewReference.get();
|
|
|
|
if (imageView != null) {
|
|
|
|
imageView.setImageBitmap(bitmap);
|
|
|
|
imageView.setBackgroundColor(0x00000000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void loadBitmap(Message message, ImageView imageView) {
|
|
|
|
Bitmap bm;
|
|
|
|
try {
|
|
|
|
bm = xmppConnectionService.getFileBackend().getThumbnail(message,
|
|
|
|
(int) (metrics.density * 288), true);
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
bm = null;
|
|
|
|
}
|
|
|
|
if (bm != null) {
|
|
|
|
imageView.setImageBitmap(bm);
|
|
|
|
imageView.setBackgroundColor(0x00000000);
|
|
|
|
} else {
|
|
|
|
if (cancelPotentialWork(message, imageView)) {
|
|
|
|
imageView.setBackgroundColor(0xff333333);
|
|
|
|
final BitmapWorkerTask task = new BitmapWorkerTask(imageView);
|
|
|
|
final AsyncDrawable asyncDrawable = new AsyncDrawable(
|
|
|
|
getResources(), null, task);
|
|
|
|
imageView.setImageDrawable(asyncDrawable);
|
|
|
|
try {
|
|
|
|
task.execute(message);
|
|
|
|
} catch (RejectedExecutionException e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static class AsyncDrawable extends BitmapDrawable {
|
|
|
|
private final WeakReference<BitmapWorkerTask> bitmapWorkerTaskReference;
|
|
|
|
|
|
|
|
public AsyncDrawable(Resources res, Bitmap bitmap,
|
|
|
|
BitmapWorkerTask bitmapWorkerTask) {
|
|
|
|
super(res, bitmap);
|
|
|
|
bitmapWorkerTaskReference = new WeakReference<BitmapWorkerTask>(
|
|
|
|
bitmapWorkerTask);
|
|
|
|
}
|
|
|
|
|
|
|
|
public BitmapWorkerTask getBitmapWorkerTask() {
|
|
|
|
return bitmapWorkerTaskReference.get();
|
|
|
|
}
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|