2014-01-24 02:04:05 +01:00
|
|
|
package de.gultsch.chat.ui;
|
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
import java.util.ArrayList;
|
2014-01-27 20:40:42 +01:00
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.Comparator;
|
2014-01-24 23:58:51 +01:00
|
|
|
import java.util.List;
|
2014-01-24 02:04:05 +01:00
|
|
|
|
|
|
|
import de.gultsch.chat.R;
|
|
|
|
import de.gultsch.chat.R.id;
|
2014-02-09 00:47:11 +01:00
|
|
|
import de.gultsch.chat.entities.Contact;
|
2014-01-24 23:58:51 +01:00
|
|
|
import de.gultsch.chat.entities.Conversation;
|
2014-02-03 18:38:47 +01:00
|
|
|
import de.gultsch.chat.utils.UIHelper;
|
2014-02-01 01:25:56 +01:00
|
|
|
import android.net.Uri;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.os.Bundle;
|
|
|
|
import android.app.FragmentTransaction;
|
2014-02-04 22:26:46 +01:00
|
|
|
import android.app.NotificationManager;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2014-02-10 22:45:59 +01:00
|
|
|
import android.graphics.Typeface;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.support.v4.widget.SlidingPaneLayout;
|
|
|
|
import android.support.v4.widget.SlidingPaneLayout.PanelSlideListener;
|
|
|
|
import android.util.Log;
|
2014-01-24 10:50:18 +01:00
|
|
|
import android.view.KeyEvent;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.view.LayoutInflater;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.view.ViewGroup;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.view.inputmethod.InputMethodManager;
|
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.widget.ArrayAdapter;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.widget.ListView;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.ImageView;
|
2014-01-24 02:04:05 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public class ConversationActivity extends XmppActivity {
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public static final String VIEW_CONVERSATION = "viewConversation";
|
2014-02-03 18:38:47 +01:00
|
|
|
public static final String CONVERSATION = "conversationUuid";
|
2014-02-10 03:34:00 +01:00
|
|
|
|
|
|
|
public static final int INSERT_CONTACT = 0x9889;
|
2014-01-24 02:04:05 +01:00
|
|
|
|
|
|
|
protected SlidingPaneLayout spl;
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
private List<Conversation> conversationList = new ArrayList<Conversation>();
|
2014-02-07 02:57:36 +01:00
|
|
|
private Conversation selectedConversation = null;
|
2014-01-27 20:40:42 +01:00
|
|
|
private ListView listView;
|
|
|
|
|
|
|
|
private boolean paneShouldBeOpen = true;
|
2014-02-01 15:07:20 +01:00
|
|
|
private ArrayAdapter<Conversation> listAdapter;
|
|
|
|
|
|
|
|
private OnConversationListChangedListener onConvChanged = new OnConversationListChangedListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onConversationListChanged() {
|
2014-02-07 02:57:36 +01:00
|
|
|
final Conversation currentConv = getSelectedConversation();
|
2014-02-01 15:07:20 +01:00
|
|
|
conversationList.clear();
|
|
|
|
conversationList.addAll(xmppConnectionService
|
|
|
|
.getConversations());
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
2014-02-02 16:05:15 +01:00
|
|
|
public void run() {
|
|
|
|
updateConversationList();
|
2014-02-07 02:57:36 +01:00
|
|
|
/*for(int i = 0; i < conversationList.size(); ++i) {
|
|
|
|
if (currentConv == conversationList.get(i)) {
|
|
|
|
selectedConversation = conversationList.get(i);
|
2014-02-02 16:05:15 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-02-07 02:57:36 +01:00
|
|
|
}*/
|
2014-02-01 15:07:20 +01:00
|
|
|
if(paneShouldBeOpen) {
|
2014-02-07 02:57:36 +01:00
|
|
|
selectedConversation = conversationList.get(0);
|
2014-02-01 15:07:20 +01:00
|
|
|
if (conversationList.size() >= 1) {
|
|
|
|
swapConversationFragment();
|
|
|
|
} else {
|
|
|
|
startActivity(new Intent(getApplicationContext(), NewConversationActivity.class));
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}
|
2014-02-02 16:33:34 +01:00
|
|
|
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager().findFragmentByTag("conversation");
|
|
|
|
if (selectedFragment!=null) {
|
|
|
|
selectedFragment.updateMessages();
|
|
|
|
}
|
2014-02-01 15:07:20 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2014-02-10 03:34:00 +01:00
|
|
|
private boolean contactInserted = false;
|
2014-01-27 20:40:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
public List<Conversation> getConversationList() {
|
|
|
|
return this.conversationList;
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-02-07 02:57:36 +01:00
|
|
|
public Conversation getSelectedConversation() {
|
2014-01-27 20:40:42 +01:00
|
|
|
return this.selectedConversation;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ListView getConversationListView() {
|
|
|
|
return this.listView;
|
|
|
|
}
|
|
|
|
|
|
|
|
public SlidingPaneLayout getSlidingPaneLayout() {
|
|
|
|
return this.spl;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean shouldPaneBeOpen() {
|
|
|
|
return paneShouldBeOpen;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateConversationList() {
|
|
|
|
if (conversationList.size() >= 1) {
|
|
|
|
Collections.sort(this.conversationList, new Comparator<Conversation>() {
|
|
|
|
@Override
|
|
|
|
public int compare(Conversation lhs, Conversation rhs) {
|
|
|
|
return (int) (rhs.getLatestMessageDate() - lhs.getLatestMessageDate());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
this.listView.invalidateViews();
|
|
|
|
}
|
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
super.onCreate(savedInstanceState);
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 23:58:51 +01:00
|
|
|
setContentView(R.layout.fragment_conversations_overview);
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
listView = (ListView) findViewById(R.id.list);
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
this.listAdapter = new ArrayAdapter<Conversation>(this,
|
2014-01-25 19:33:12 +01:00
|
|
|
R.layout.conversation_list_row, conversationList) {
|
2014-01-24 23:58:51 +01:00
|
|
|
@Override
|
2014-01-25 19:33:12 +01:00
|
|
|
public View getView(int position, View view, ViewGroup parent) {
|
2014-01-24 23:58:51 +01:00
|
|
|
if (view == null) {
|
2014-01-25 19:33:12 +01:00
|
|
|
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
view = (View) inflater.inflate(
|
|
|
|
R.layout.conversation_list_row, null);
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
2014-02-10 22:45:59 +01:00
|
|
|
Conversation conv = getItem(position);
|
|
|
|
TextView convName = (TextView) view.findViewById(R.id.conversation_name);
|
|
|
|
convName.setText(conv.getName());
|
|
|
|
TextView convLastMsg = (TextView) view.findViewById(R.id.conversation_lastmsg);
|
|
|
|
convLastMsg.setText(conv.getLatestMessage());
|
|
|
|
|
|
|
|
if(!conv.isRead()) {
|
|
|
|
convName.setTypeface(null,Typeface.BOLD);
|
|
|
|
convLastMsg.setTypeface(null,Typeface.BOLD);
|
|
|
|
} else {
|
|
|
|
convName.setTypeface(null,Typeface.NORMAL);
|
|
|
|
convLastMsg.setTypeface(null,Typeface.NORMAL);
|
|
|
|
}
|
|
|
|
|
2014-01-26 03:27:55 +01:00
|
|
|
((TextView) view.findViewById(R.id.conversation_lastupdate))
|
2014-02-03 18:38:47 +01:00
|
|
|
.setText(UIHelper.readableTimeDifference(getItem(position).getLatestMessageDate()));
|
2014-02-01 01:25:56 +01:00
|
|
|
|
|
|
|
Uri profilePhoto = getItem(position).getProfilePhotoUri();
|
|
|
|
ImageView imageView = (ImageView) view.findViewById(R.id.conversation_image);
|
|
|
|
if (profilePhoto!=null) {
|
|
|
|
imageView.setImageURI(profilePhoto);
|
|
|
|
} else {
|
2014-02-03 18:38:47 +01:00
|
|
|
imageView.setImageBitmap(UIHelper.getUnknownContactPicture(getItem(position).getName(),200));
|
2014-02-01 01:25:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
((ImageView) view.findViewById(R.id.conversation_image))
|
|
|
|
.setImageURI(getItem(position).getProfilePhotoUri());
|
2014-01-24 23:58:51 +01:00
|
|
|
return view;
|
|
|
|
}
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
listView.setAdapter(this.listAdapter);
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
listView.setOnItemClickListener(new OnItemClickListener() {
|
|
|
|
|
|
|
|
@Override
|
2014-01-24 10:50:18 +01:00
|
|
|
public void onItemClick(AdapterView<?> arg0, View clickedView,
|
|
|
|
int position, long arg3) {
|
2014-01-27 20:40:42 +01:00
|
|
|
paneShouldBeOpen = false;
|
2014-02-07 02:57:36 +01:00
|
|
|
if (selectedConversation != conversationList.get(position)) {
|
|
|
|
selectedConversation = conversationList.get(position);
|
2014-01-27 20:40:42 +01:00
|
|
|
swapConversationFragment(); //.onBackendConnected(conversationList.get(position));
|
|
|
|
} else {
|
|
|
|
spl.closePane();
|
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
spl = (SlidingPaneLayout) findViewById(id.slidingpanelayout);
|
|
|
|
spl.setParallaxDistance(150);
|
|
|
|
spl.setShadowResource(R.drawable.es_slidingpane_shadow);
|
|
|
|
spl.setSliderFadeColor(0);
|
|
|
|
spl.setPanelSlideListener(new PanelSlideListener() {
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
public void onPanelOpened(View arg0) {
|
2014-01-27 20:40:42 +01:00
|
|
|
paneShouldBeOpen = true;
|
2014-01-24 02:04:05 +01:00
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(false);
|
|
|
|
getActionBar().setTitle(R.string.app_name);
|
|
|
|
invalidateOptionsMenu();
|
2014-01-24 10:50:18 +01:00
|
|
|
|
|
|
|
InputMethodManager inputManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
|
|
|
|
View focus = getCurrentFocus();
|
|
|
|
|
|
|
|
if (focus != null) {
|
|
|
|
|
|
|
|
inputManager.hideSoftInputFromWindow(
|
|
|
|
focus.getWindowToken(),
|
|
|
|
InputMethodManager.HIDE_NOT_ALWAYS);
|
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
public void onPanelClosed(View arg0) {
|
2014-02-02 16:05:15 +01:00
|
|
|
paneShouldBeOpen = false;
|
2014-01-24 10:50:18 +01:00
|
|
|
if (conversationList.size() > 0) {
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
2014-02-07 02:57:36 +01:00
|
|
|
getActionBar().setTitle(getSelectedConversation().getName());
|
2014-01-24 10:50:18 +01:00
|
|
|
invalidateOptionsMenu();
|
2014-02-10 22:45:59 +01:00
|
|
|
if (!getSelectedConversation().isRead()) {
|
|
|
|
getSelectedConversation().markRead();
|
|
|
|
updateConversationList();
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPanelSlide(View arg0, float arg1) {
|
|
|
|
// TODO Auto-generated method stub
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.conversations, menu);
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
if (spl.isOpen()) {
|
|
|
|
((MenuItem) menu.findItem(R.id.action_archive)).setVisible(false);
|
|
|
|
((MenuItem) menu.findItem(R.id.action_details)).setVisible(false);
|
|
|
|
((MenuItem) menu.findItem(R.id.action_security)).setVisible(false);
|
|
|
|
} else {
|
|
|
|
((MenuItem) menu.findItem(R.id.action_add)).setVisible(false);
|
2014-02-07 02:57:36 +01:00
|
|
|
if (this.getSelectedConversation()!=null) {
|
|
|
|
if (this.getSelectedConversation().getMode() == Conversation.MODE_MULTI) {
|
|
|
|
((MenuItem) menu.findItem(R.id.action_security)).setVisible(false);
|
2014-02-10 03:34:00 +01:00
|
|
|
((MenuItem) menu.findItem(R.id.action_details)).setVisible(false);
|
|
|
|
((MenuItem) menu.findItem(R.id.action_archive)).setTitle("Leave conference");
|
2014-02-07 02:57:36 +01:00
|
|
|
}
|
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
2014-01-24 10:50:18 +01:00
|
|
|
switch (item.getItemId()) {
|
2014-01-24 02:04:05 +01:00
|
|
|
case android.R.id.home:
|
|
|
|
spl.openPane();
|
|
|
|
break;
|
|
|
|
case R.id.action_settings:
|
|
|
|
startActivity(new Intent(this, SettingsActivity.class));
|
|
|
|
break;
|
|
|
|
case R.id.action_accounts:
|
|
|
|
startActivity(new Intent(this, ManageAccountActivity.class));
|
|
|
|
break;
|
|
|
|
case R.id.action_add:
|
|
|
|
startActivity(new Intent(this, NewConversationActivity.class));
|
2014-01-27 20:40:42 +01:00
|
|
|
break;
|
2014-01-24 23:58:51 +01:00
|
|
|
case R.id.action_archive:
|
2014-02-07 02:57:36 +01:00
|
|
|
Conversation conv = getSelectedConversation();
|
2014-01-27 20:40:42 +01:00
|
|
|
conv.setStatus(Conversation.STATUS_ARCHIVED);
|
2014-02-01 15:07:20 +01:00
|
|
|
paneShouldBeOpen = true;
|
|
|
|
spl.openPane();
|
|
|
|
xmppConnectionService.archiveConversation(conv);
|
2014-02-07 02:57:36 +01:00
|
|
|
selectedConversation = conversationList.get(0);
|
2014-01-25 19:33:12 +01:00
|
|
|
break;
|
2014-02-09 00:47:11 +01:00
|
|
|
case R.id.action_details:
|
|
|
|
DialogContactDetails details = new DialogContactDetails();
|
2014-02-10 15:24:34 +01:00
|
|
|
Contact contact = this.getSelectedConversation().getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
contact.setAccount(this.selectedConversation.getAccount());
|
|
|
|
details.setContact(contact);
|
|
|
|
details.show(getFragmentManager(), "details");
|
|
|
|
} else {
|
|
|
|
Log.d("xmppService","contact was null - means not in roster");
|
|
|
|
}
|
2014-02-09 00:47:11 +01:00
|
|
|
break;
|
2014-01-24 02:04:05 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
return super.onOptionsItemSelected(item);
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
protected ConversationFragment swapConversationFragment() {
|
2014-01-25 19:33:12 +01:00
|
|
|
ConversationFragment selectedFragment = new ConversationFragment();
|
2014-01-27 20:40:42 +01:00
|
|
|
|
2014-01-24 10:50:18 +01:00
|
|
|
FragmentTransaction transaction = getFragmentManager()
|
|
|
|
.beginTransaction();
|
2014-01-27 20:40:42 +01:00
|
|
|
transaction.replace(R.id.selected_conversation, selectedFragment,"conversation");
|
2014-01-24 02:04:05 +01:00
|
|
|
transaction.commit();
|
2014-01-27 20:40:42 +01:00
|
|
|
return selectedFragment;
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
|
2014-01-24 10:50:18 +01:00
|
|
|
@Override
|
|
|
|
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
|
|
|
if (keyCode == KeyEvent.KEYCODE_BACK) {
|
|
|
|
if (!spl.isOpen()) {
|
|
|
|
spl.openPane();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return super.onKeyDown(keyCode, event);
|
|
|
|
}
|
2014-02-01 15:07:20 +01:00
|
|
|
|
2014-02-04 22:26:46 +01:00
|
|
|
public void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
|
|
|
nm.cancelAll();
|
2014-02-05 22:33:39 +01:00
|
|
|
if (conversationList.size()>=1) {
|
|
|
|
onConvChanged.onConversationListChanged();
|
|
|
|
}
|
2014-02-04 22:26:46 +01:00
|
|
|
}
|
|
|
|
|
2014-02-05 22:33:39 +01:00
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
Log.d("gultsch","called on stop in conversation activity");
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
xmppConnectionService.removeOnConversationListChangedListener();
|
|
|
|
}
|
|
|
|
super.onStop();
|
2014-02-02 16:05:15 +01:00
|
|
|
}
|
2014-01-25 19:33:12 +01:00
|
|
|
|
|
|
|
@Override
|
2014-01-27 20:40:42 +01:00
|
|
|
void onBackendConnected() {
|
2014-02-01 15:07:20 +01:00
|
|
|
|
2014-02-10 03:34:00 +01:00
|
|
|
|
|
|
|
if (contactInserted) {
|
|
|
|
Log.d("xmppService","merge phone contacts with roster");
|
|
|
|
contactInserted = false;
|
|
|
|
xmppConnectionService.mergePhoneContactsWithRoster();
|
|
|
|
}
|
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
xmppConnectionService.setOnConversationListChangedListener(this.onConvChanged);
|
|
|
|
|
2014-02-02 16:05:15 +01:00
|
|
|
if (conversationList.size()==0) {
|
|
|
|
conversationList.clear();
|
|
|
|
conversationList.addAll(xmppConnectionService
|
|
|
|
.getConversations());
|
|
|
|
|
|
|
|
this.updateConversationList();
|
2014-01-27 20:40:42 +01:00
|
|
|
}
|
2014-01-25 19:33:12 +01:00
|
|
|
|
|
|
|
if ((getIntent().getAction().equals(Intent.ACTION_VIEW) && (!handledViewIntent))) {
|
|
|
|
if (getIntent().getType().equals(
|
|
|
|
ConversationActivity.VIEW_CONVERSATION)) {
|
|
|
|
handledViewIntent = true;
|
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
String convToView = (String) getIntent().getExtras().get(CONVERSATION);
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
for(int i = 0; i < conversationList.size(); ++i) {
|
|
|
|
if (conversationList.get(i).getUuid().equals(convToView)) {
|
2014-02-07 02:57:36 +01:00
|
|
|
selectedConversation = conversationList.get(i);
|
2014-01-27 20:40:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
paneShouldBeOpen = false;
|
|
|
|
swapConversationFragment();
|
2014-01-25 19:33:12 +01:00
|
|
|
}
|
|
|
|
} else {
|
2014-01-28 23:15:30 +01:00
|
|
|
if (xmppConnectionService.getAccounts().size() == 0) {
|
|
|
|
startActivity(new Intent(this, ManageAccountActivity.class));
|
|
|
|
finish();
|
|
|
|
} else if (conversationList.size() <= 0) {
|
2014-01-25 19:33:12 +01:00
|
|
|
//add no history
|
|
|
|
startActivity(new Intent(this, NewConversationActivity.class));
|
|
|
|
finish();
|
|
|
|
} else {
|
2014-01-28 22:21:08 +01:00
|
|
|
spl.openPane();
|
2014-01-27 20:40:42 +01:00
|
|
|
//find currently loaded fragment
|
|
|
|
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager().findFragmentByTag("conversation");
|
|
|
|
if (selectedFragment!=null) {
|
|
|
|
Log.d("gultsch","ConversationActivity. found old fragment.");
|
|
|
|
selectedFragment.onBackendConnected();
|
|
|
|
} else {
|
|
|
|
Log.d("gultsch","conversationactivity. no old fragment found. creating new one");
|
2014-02-07 02:57:36 +01:00
|
|
|
selectedConversation = conversationList.get(0);
|
2014-01-27 20:40:42 +01:00
|
|
|
Log.d("gultsch","selected conversation is #"+selectedConversation);
|
|
|
|
swapConversationFragment();
|
|
|
|
}
|
2014-01-25 19:33:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-10 03:34:00 +01:00
|
|
|
|
|
|
|
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
|
|
if (requestCode==INSERT_CONTACT) {
|
|
|
|
Log.d("xmppService","contact inserted");
|
|
|
|
this.contactInserted = true;
|
|
|
|
}
|
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|