2014-11-10 18:23:54 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
2014-11-16 01:10:29 +00:00
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.content.DialogInterface;
|
2014-11-10 18:23:54 +00:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Bundle;
|
2014-11-16 01:10:29 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
2014-11-10 18:23:54 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.EditText;
|
2014-11-10 21:03:23 +00:00
|
|
|
import android.widget.RelativeLayout;
|
2014-11-10 18:23:54 +00:00
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.Toast;
|
|
|
|
|
2014-11-16 01:10:29 +00:00
|
|
|
import com.google.zxing.integration.android.IntentIntegrator;
|
|
|
|
import com.google.zxing.integration.android.IntentResult;
|
|
|
|
|
2014-11-10 18:23:54 +00:00
|
|
|
import net.java.otr4j.OtrException;
|
|
|
|
import net.java.otr4j.session.Session;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-11-16 01:10:29 +00:00
|
|
|
import eu.siacs.conversations.entities.Contact;
|
2014-11-10 18:23:54 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
2014-11-15 23:20:20 +00:00
|
|
|
import eu.siacs.conversations.utils.CryptoHelper;
|
2014-11-16 01:10:29 +00:00
|
|
|
import eu.siacs.conversations.utils.XmppUri;
|
2014-11-10 18:23:54 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
|
|
|
|
|
|
|
public class VerifyOTRActivity extends XmppActivity implements XmppConnectionService.OnConversationUpdate {
|
|
|
|
|
|
|
|
public static final String ACTION_VERIFY_CONTACT = "verify_contact";
|
|
|
|
|
2014-11-10 21:03:23 +00:00
|
|
|
private RelativeLayout mVerificationAreaOne;
|
|
|
|
private RelativeLayout mVerificationAreaTwo;
|
|
|
|
private TextView mErrorNoSession;
|
2014-11-10 18:23:54 +00:00
|
|
|
private TextView mRemoteJid;
|
|
|
|
private TextView mRemoteFingerprint;
|
|
|
|
private TextView mYourFingerprint;
|
|
|
|
private EditText mSharedSecretHint;
|
|
|
|
private EditText mSharedSecretSecret;
|
2014-11-16 01:10:29 +00:00
|
|
|
private Button mButtonScanQrCode;
|
|
|
|
private Button mButtonShowQrCode;
|
2014-11-10 18:23:54 +00:00
|
|
|
private Button mButtonSharedSecretPositive;
|
|
|
|
private Button mButtonSharedSecretNegative;
|
|
|
|
private TextView mStatusMessage;
|
|
|
|
private Account mAccount;
|
|
|
|
private Conversation mConversation;
|
2014-11-10 21:03:23 +00:00
|
|
|
|
2014-11-16 01:10:29 +00:00
|
|
|
private DialogInterface.OnClickListener mVerifyFingerprintListener = new DialogInterface.OnClickListener() {
|
2014-11-10 21:03:23 +00:00
|
|
|
|
|
|
|
@Override
|
2014-11-16 01:10:29 +00:00
|
|
|
public void onClick(DialogInterface dialogInterface, int click) {
|
2014-11-10 21:03:23 +00:00
|
|
|
mConversation.verifyOtrFingerprint();
|
2014-11-16 01:10:29 +00:00
|
|
|
updateView();
|
|
|
|
xmppConnectionService.syncRosterToDisk(mConversation.getAccount());
|
2014-11-10 21:03:23 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-11-16 01:10:29 +00:00
|
|
|
private View.OnClickListener mShowQrCodeListener = new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(final View view) {
|
|
|
|
showQrCode();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private View.OnClickListener mScanQrCodeListener = new View.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
new IntentIntegrator(VerifyOTRActivity.this).initiateScan();
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-11-10 18:23:54 +00:00
|
|
|
private View.OnClickListener mCreateSharedSecretListener = new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(final View view) {
|
2014-11-12 11:45:59 +00:00
|
|
|
if (isAccountOnline()) {
|
|
|
|
final String question = mSharedSecretHint.getText().toString();
|
|
|
|
final String secret = mSharedSecretSecret.getText().toString();
|
|
|
|
initSmp(question, secret);
|
|
|
|
updateView();
|
2014-11-10 18:23:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private View.OnClickListener mCancelSharedSecretListener = new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-11-12 11:45:59 +00:00
|
|
|
if (isAccountOnline()) {
|
|
|
|
abortSmp();
|
|
|
|
updateView();
|
|
|
|
}
|
2014-11-10 18:23:54 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
private View.OnClickListener mRespondSharedSecretListener = new View.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-11-12 11:45:59 +00:00
|
|
|
if (isAccountOnline()) {
|
|
|
|
final String question = mSharedSecretHint.getText().toString();
|
|
|
|
final String secret = mSharedSecretSecret.getText().toString();
|
|
|
|
respondSmp(question, secret);
|
|
|
|
updateView();
|
|
|
|
}
|
2014-11-10 18:23:54 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
private View.OnClickListener mRetrySharedSecretListener = new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
mConversation.smp().status = Conversation.Smp.STATUS_NONE;
|
|
|
|
mConversation.smp().hint = null;
|
|
|
|
mConversation.smp().secret = null;
|
|
|
|
updateView();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private View.OnClickListener mFinishListener = new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
mConversation.smp().status = Conversation.Smp.STATUS_NONE;
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-11-16 01:10:29 +00:00
|
|
|
private XmppUri mPendingUri = null;
|
|
|
|
|
2014-11-10 18:23:54 +00:00
|
|
|
protected boolean initSmp(final String question, final String secret) {
|
|
|
|
final Session session = mConversation.getOtrSession();
|
|
|
|
if (session!=null) {
|
|
|
|
try {
|
|
|
|
session.initSmp(question, secret);
|
|
|
|
mConversation.smp().status = Conversation.Smp.STATUS_WE_REQUESTED;
|
|
|
|
return true;
|
|
|
|
} catch (OtrException e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected boolean abortSmp() {
|
|
|
|
final Session session = mConversation.getOtrSession();
|
|
|
|
if (session!=null) {
|
|
|
|
try {
|
|
|
|
session.abortSmp();
|
|
|
|
mConversation.smp().status = Conversation.Smp.STATUS_NONE;
|
2014-11-10 21:03:23 +00:00
|
|
|
mConversation.smp().hint = null;
|
|
|
|
mConversation.smp().secret = null;
|
2014-11-10 18:23:54 +00:00
|
|
|
return true;
|
|
|
|
} catch (OtrException e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected boolean respondSmp(final String question, final String secret) {
|
|
|
|
final Session session = mConversation.getOtrSession();
|
|
|
|
if (session!=null) {
|
|
|
|
try {
|
|
|
|
session.respondSmp(question,secret);
|
|
|
|
return true;
|
|
|
|
} catch (OtrException e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-16 01:10:29 +00:00
|
|
|
protected void verifyWithUri(XmppUri uri) {
|
|
|
|
Contact contact = mConversation.getContact();
|
|
|
|
if (this.mConversation.getContact().getJid().equals(uri.getJid()) && uri.getFingerprint() != null) {
|
|
|
|
contact.addOtrFingerprint(uri.getFingerprint());
|
|
|
|
Toast.makeText(this,R.string.verified,Toast.LENGTH_SHORT).show();
|
|
|
|
updateView();
|
|
|
|
xmppConnectionService.syncRosterToDisk(contact.getAccount());
|
|
|
|
} else {
|
|
|
|
Toast.makeText(this,R.string.could_not_verify_fingerprint,Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-12 11:45:59 +00:00
|
|
|
protected boolean isAccountOnline() {
|
2014-11-15 16:09:02 +00:00
|
|
|
if (this.mAccount.getStatus() != Account.State.ONLINE) {
|
2014-11-12 11:45:59 +00:00
|
|
|
Toast.makeText(this,R.string.not_connected_try_again,Toast.LENGTH_SHORT).show();
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-10 18:23:54 +00:00
|
|
|
protected boolean handleIntent(Intent intent) {
|
2014-11-10 22:47:04 +00:00
|
|
|
if (intent.getAction().equals(ACTION_VERIFY_CONTACT)) {
|
2014-11-10 18:23:54 +00:00
|
|
|
try {
|
2014-11-10 22:47:04 +00:00
|
|
|
this.mAccount = this.xmppConnectionService.findAccountByJid(Jid.fromString(intent.getExtras().getString("account")));
|
2014-11-10 18:23:54 +00:00
|
|
|
} catch (final InvalidJidException ignored) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
try {
|
2014-11-10 22:47:04 +00:00
|
|
|
this.mConversation = this.xmppConnectionService.find(this.mAccount,Jid.fromString(intent.getExtras().getString("contact")));
|
2014-11-10 18:23:54 +00:00
|
|
|
if (this.mConversation == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} catch (final InvalidJidException ignored) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-16 01:10:29 +00:00
|
|
|
@Override
|
|
|
|
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
|
|
|
|
if ((requestCode & 0xFFFF) == IntentIntegrator.REQUEST_CODE) {
|
|
|
|
IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent);
|
|
|
|
if (scanResult != null && scanResult.getFormatName() != null) {
|
|
|
|
String data = scanResult.getContents();
|
|
|
|
XmppUri uri = new XmppUri(data);
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
verifyWithUri(uri);
|
|
|
|
} else {
|
|
|
|
this.mPendingUri = uri;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
super.onActivityResult(requestCode, requestCode, intent);
|
|
|
|
}
|
|
|
|
|
2014-11-10 18:23:54 +00:00
|
|
|
@Override
|
|
|
|
protected void onBackendConnected() {
|
|
|
|
if (handleIntent(getIntent())) {
|
2014-11-16 01:10:29 +00:00
|
|
|
if (mPendingUri!=null) {
|
|
|
|
verifyWithUri(mPendingUri);
|
|
|
|
mPendingUri = null;
|
|
|
|
}
|
2014-11-10 18:23:54 +00:00
|
|
|
updateView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void updateView() {
|
2014-11-10 21:03:23 +00:00
|
|
|
if (this.mConversation.hasValidOtrSession()) {
|
2014-11-16 01:10:29 +00:00
|
|
|
invalidateOptionsMenu();
|
2014-11-10 21:03:23 +00:00
|
|
|
this.mVerificationAreaOne.setVisibility(View.VISIBLE);
|
|
|
|
this.mVerificationAreaTwo.setVisibility(View.VISIBLE);
|
|
|
|
this.mErrorNoSession.setVisibility(View.GONE);
|
2014-11-15 23:20:20 +00:00
|
|
|
this.mYourFingerprint.setText(CryptoHelper.prettifyFingerprint(this.mAccount.getOtrFingerprint()));
|
2014-11-10 21:03:23 +00:00
|
|
|
this.mRemoteFingerprint.setText(this.mConversation.getOtrFingerprint());
|
|
|
|
this.mRemoteJid.setText(this.mConversation.getContact().getJid().toBareJid().toString());
|
|
|
|
Conversation.Smp smp = mConversation.smp();
|
|
|
|
Session session = mConversation.getOtrSession();
|
|
|
|
if (mConversation.isOtrFingerprintVerified()) {
|
2014-11-16 01:10:29 +00:00
|
|
|
deactivateButton(mButtonScanQrCode, R.string.verified);
|
2014-11-10 21:03:23 +00:00
|
|
|
} else {
|
2014-11-16 01:10:29 +00:00
|
|
|
activateButton(mButtonScanQrCode, R.string.scan_qr_code, mScanQrCodeListener);
|
2014-11-10 21:03:23 +00:00
|
|
|
}
|
|
|
|
if (smp.status == Conversation.Smp.STATUS_NONE) {
|
|
|
|
activateButton(mButtonSharedSecretPositive, R.string.create, mCreateSharedSecretListener);
|
|
|
|
deactivateButton(mButtonSharedSecretNegative, R.string.cancel);
|
|
|
|
this.mSharedSecretHint.setFocusableInTouchMode(true);
|
|
|
|
this.mSharedSecretSecret.setFocusableInTouchMode(true);
|
|
|
|
this.mSharedSecretSecret.setText("");
|
|
|
|
this.mSharedSecretHint.setText("");
|
|
|
|
this.mSharedSecretHint.setVisibility(View.VISIBLE);
|
|
|
|
this.mSharedSecretSecret.setVisibility(View.VISIBLE);
|
|
|
|
this.mStatusMessage.setVisibility(View.GONE);
|
|
|
|
} else if (smp.status == Conversation.Smp.STATUS_CONTACT_REQUESTED) {
|
|
|
|
this.mSharedSecretHint.setFocusable(false);
|
|
|
|
this.mSharedSecretHint.setText(smp.hint);
|
|
|
|
this.mSharedSecretSecret.setFocusableInTouchMode(true);
|
|
|
|
this.mSharedSecretHint.setVisibility(View.VISIBLE);
|
|
|
|
this.mSharedSecretSecret.setVisibility(View.VISIBLE);
|
|
|
|
this.mStatusMessage.setVisibility(View.GONE);
|
|
|
|
deactivateButton(mButtonSharedSecretNegative, R.string.cancel);
|
|
|
|
activateButton(mButtonSharedSecretPositive, R.string.respond, mRespondSharedSecretListener);
|
|
|
|
} else if (smp.status == Conversation.Smp.STATUS_FAILED) {
|
|
|
|
activateButton(mButtonSharedSecretNegative, R.string.cancel, mFinishListener);
|
|
|
|
activateButton(mButtonSharedSecretPositive, R.string.try_again, mRetrySharedSecretListener);
|
|
|
|
this.mSharedSecretHint.setVisibility(View.GONE);
|
|
|
|
this.mSharedSecretSecret.setVisibility(View.GONE);
|
|
|
|
this.mStatusMessage.setVisibility(View.VISIBLE);
|
|
|
|
this.mStatusMessage.setText(R.string.secrets_do_not_match);
|
|
|
|
this.mStatusMessage.setTextColor(getWarningTextColor());
|
2014-11-21 12:42:25 +00:00
|
|
|
} else if (smp.status == Conversation.Smp.STATUS_FINISHED) {
|
|
|
|
this.mSharedSecretHint.setText("");
|
2014-11-10 21:03:23 +00:00
|
|
|
this.mSharedSecretHint.setVisibility(View.GONE);
|
2014-11-21 12:42:25 +00:00
|
|
|
this.mSharedSecretSecret.setText("");
|
2014-11-10 21:03:23 +00:00
|
|
|
this.mSharedSecretSecret.setVisibility(View.GONE);
|
|
|
|
this.mStatusMessage.setVisibility(View.VISIBLE);
|
|
|
|
this.mStatusMessage.setTextColor(getPrimaryColor());
|
|
|
|
deactivateButton(mButtonSharedSecretNegative, R.string.cancel);
|
2014-11-21 12:42:25 +00:00
|
|
|
if (mConversation.isOtrFingerprintVerified()) {
|
|
|
|
activateButton(mButtonSharedSecretPositive, R.string.finish, mFinishListener);
|
|
|
|
this.mStatusMessage.setText(R.string.verified);
|
|
|
|
} else {
|
|
|
|
activateButton(mButtonSharedSecretPositive,R.string.reset,mRetrySharedSecretListener);
|
|
|
|
this.mStatusMessage.setText(R.string.secret_accepted);
|
|
|
|
}
|
2014-11-10 21:03:23 +00:00
|
|
|
} else if (session != null && session.isSmpInProgress()) {
|
|
|
|
deactivateButton(mButtonSharedSecretPositive, R.string.in_progress);
|
|
|
|
activateButton(mButtonSharedSecretNegative, R.string.cancel, mCancelSharedSecretListener);
|
|
|
|
this.mSharedSecretHint.setVisibility(View.VISIBLE);
|
|
|
|
this.mSharedSecretSecret.setVisibility(View.VISIBLE);
|
|
|
|
this.mSharedSecretHint.setFocusable(false);
|
|
|
|
this.mSharedSecretSecret.setFocusable(false);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.mVerificationAreaOne.setVisibility(View.GONE);
|
|
|
|
this.mVerificationAreaTwo.setVisibility(View.GONE);
|
|
|
|
this.mErrorNoSession.setVisibility(View.VISIBLE);
|
2014-11-10 18:23:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void activateButton(Button button, int text, View.OnClickListener listener) {
|
|
|
|
button.setEnabled(true);
|
|
|
|
button.setTextColor(getPrimaryTextColor());
|
|
|
|
button.setText(text);
|
|
|
|
button.setOnClickListener(listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void deactivateButton(Button button, int text) {
|
|
|
|
button.setEnabled(false);
|
|
|
|
button.setTextColor(getSecondaryTextColor());
|
|
|
|
button.setText(text);
|
|
|
|
button.setOnClickListener(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_verify_otr);
|
|
|
|
this.mRemoteFingerprint = (TextView) findViewById(R.id.remote_fingerprint);
|
|
|
|
this.mRemoteJid = (TextView) findViewById(R.id.remote_jid);
|
|
|
|
this.mYourFingerprint = (TextView) findViewById(R.id.your_fingerprint);
|
|
|
|
this.mButtonSharedSecretNegative = (Button) findViewById(R.id.button_shared_secret_negative);
|
|
|
|
this.mButtonSharedSecretPositive = (Button) findViewById(R.id.button_shared_secret_positive);
|
2014-11-16 01:10:29 +00:00
|
|
|
this.mButtonScanQrCode = (Button) findViewById(R.id.button_scan_qr_code);
|
|
|
|
this.mButtonShowQrCode = (Button) findViewById(R.id.button_show_qr_code);
|
|
|
|
this.mButtonShowQrCode.setOnClickListener(this.mShowQrCodeListener);
|
2014-11-10 18:23:54 +00:00
|
|
|
this.mSharedSecretSecret = (EditText) findViewById(R.id.shared_secret_secret);
|
|
|
|
this.mSharedSecretHint = (EditText) findViewById(R.id.shared_secret_hint);
|
|
|
|
this.mStatusMessage= (TextView) findViewById(R.id.status_message);
|
2014-11-10 21:03:23 +00:00
|
|
|
this.mVerificationAreaOne = (RelativeLayout) findViewById(R.id.verification_area_one);
|
|
|
|
this.mVerificationAreaTwo = (RelativeLayout) findViewById(R.id.verification_area_two);
|
|
|
|
this.mErrorNoSession = (TextView) findViewById(R.id.error_no_session);
|
2014-11-10 18:23:54 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 01:10:29 +00:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.verify_otr, menu);
|
|
|
|
if (mConversation != null && mConversation.isOtrFingerprintVerified()) {
|
|
|
|
MenuItem manuallyVerifyItem = menu.findItem(R.id.manually_verify);
|
|
|
|
manuallyVerifyItem.setVisible(false);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem menuItem) {
|
|
|
|
if (menuItem.getItemId() == R.id.manually_verify) {
|
|
|
|
showManuallyVerifyDialog();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return super.onOptionsItemSelected(menuItem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void showManuallyVerifyDialog() {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(R.string.manually_verify);
|
|
|
|
builder.setMessage(R.string.are_you_sure_verify_fingerprint);
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.verify, mVerifyFingerprintListener);
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
|
2014-11-10 18:23:54 +00:00
|
|
|
@Override
|
|
|
|
protected String getShareableUri() {
|
|
|
|
if (mAccount!=null) {
|
2014-11-15 23:20:20 +00:00
|
|
|
return mAccount.getShareableUri();
|
2014-11-10 18:23:54 +00:00
|
|
|
} else {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onConversationUpdate() {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
updateView();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|