fixed image sharing with contacts that have multiple presences
This commit is contained in:
parent
09f488a7e2
commit
4070c33605
|
@ -26,6 +26,7 @@ import android.view.View.OnClickListener;
|
||||||
import android.widget.ImageView;
|
import android.widget.ImageView;
|
||||||
import android.widget.LinearLayout;
|
import android.widget.LinearLayout;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
import android.widget.Toast;
|
||||||
|
|
||||||
public class ShareWithActivity extends XmppActivity {
|
public class ShareWithActivity extends XmppActivity {
|
||||||
|
|
||||||
|
@ -81,8 +82,8 @@ public class ShareWithActivity extends XmppActivity {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
void onBackendConnected() {
|
void onBackendConnected() {
|
||||||
this.isImage = (getIntent().getType() != null && getIntent()
|
this.isImage = (getIntent().getType() != null && getIntent().getType()
|
||||||
.getType().startsWith("image/"));
|
.startsWith("image/"));
|
||||||
SharedPreferences preferences = PreferenceManager
|
SharedPreferences preferences = PreferenceManager
|
||||||
.getDefaultSharedPreferences(this);
|
.getDefaultSharedPreferences(this);
|
||||||
boolean useSubject = preferences.getBoolean("use_subject_in_muc", true);
|
boolean useSubject = preferences.getBoolean("use_subject_in_muc", true);
|
||||||
|
@ -158,20 +159,28 @@ public class ShareWithActivity extends XmppActivity {
|
||||||
private void share(final Conversation conversation) {
|
private void share(final Conversation conversation) {
|
||||||
String sharedText = null;
|
String sharedText = null;
|
||||||
if (isImage) {
|
if (isImage) {
|
||||||
final Uri uri = (Uri) getIntent().getParcelableExtra(Intent.EXTRA_STREAM);
|
final Uri uri = (Uri) getIntent().getParcelableExtra(
|
||||||
|
Intent.EXTRA_STREAM);
|
||||||
selectPresence(conversation, new OnPresenceSelected() {
|
selectPresence(conversation, new OnPresenceSelected() {
|
||||||
@Override
|
@Override
|
||||||
public void onPresenceSelected() {
|
public void onPresenceSelected() {
|
||||||
ShareWithActivity.this.xmppConnectionService.attachImageToConversation(conversation, uri,attachImageCallback);
|
Toast.makeText(getApplicationContext(),
|
||||||
|
getText(R.string.preparing_image),
|
||||||
|
Toast.LENGTH_LONG).show();
|
||||||
|
ShareWithActivity.this.xmppConnectionService
|
||||||
|
.attachImageToConversation(conversation, uri,
|
||||||
|
attachImageCallback);
|
||||||
|
switchToConversation(conversation, null, true);
|
||||||
|
finish();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
sharedText = getIntent().getStringExtra(
|
sharedText = getIntent().getStringExtra(Intent.EXTRA_TEXT);
|
||||||
Intent.EXTRA_TEXT);
|
|
||||||
}
|
|
||||||
switchToConversation(conversation, sharedText, true);
|
switchToConversation(conversation, sharedText, true);
|
||||||
finish();
|
finish();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue