mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-06 17:25:01 -05:00
fixed #406
This commit is contained in:
parent
f888b167c6
commit
2c9b2e6bf8
@ -100,11 +100,9 @@ public class ShareWithActivity extends XmppActivity {
|
||||
});
|
||||
for (final Conversation conversation : convList) {
|
||||
if (!isImage || conversation.getMode() == Conversation.MODE_SINGLE) {
|
||||
View view = createContactView(
|
||||
conversation.getName(useSubject),
|
||||
View view = createContactView(conversation.getName(useSubject),
|
||||
conversation.getLatestMessage().getBody().trim(),
|
||||
UIHelper.getContactPicture(conversation, 48,
|
||||
this.getApplicationContext(), false));
|
||||
conversation.getImage(getApplicationContext(), 48));
|
||||
view.setOnClickListener(new OnClickListener() {
|
||||
|
||||
@Override
|
||||
@ -136,19 +134,17 @@ public class ShareWithActivity extends XmppActivity {
|
||||
});
|
||||
|
||||
for (int i = 0; i < contactsList.size(); ++i) {
|
||||
final Contact con = contactsList.get(i);
|
||||
View view = createContactView(
|
||||
con.getDisplayName(),
|
||||
con.getJid(),
|
||||
UIHelper.getContactPicture(con, 48,
|
||||
this.getApplicationContext(), false));
|
||||
final Contact contact = contactsList.get(i);
|
||||
View view = createContactView(contact.getDisplayName(),
|
||||
contact.getJid(),
|
||||
contact.getImage(48, getApplicationContext()));
|
||||
view.setOnClickListener(new OnClickListener() {
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Conversation conversation = xmppConnectionService
|
||||
.findOrCreateConversation(con.getAccount(),
|
||||
con.getJid(), false);
|
||||
.findOrCreateConversation(contact.getAccount(),
|
||||
contact.getJid(), false);
|
||||
share(conversation);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user