Cannot add messages to adapter in a differen thread

This commit is contained in:
Sebastian Kaspari 2010-03-20 23:15:52 +01:00
parent e0793a3bfa
commit 926bd9168a
1 changed files with 5 additions and 9 deletions

View File

@ -140,8 +140,6 @@ public class ConversationActivity extends Activity implements ServiceConnection,
}
// Fill view with messages that have been buffered while paused
new Thread() {
public void run() {
for (Conversation conversation : server.getConversations()) {
while (conversation.hasBufferedMessages()) {
if (conversation.getMessageListAdapter() != null) {
@ -150,8 +148,6 @@ public class ConversationActivity extends Activity implements ServiceConnection,
}
}
}
}.start();
}
/**
* On Pause