Conversations/src/de/gultsch/chat/ui/ConversationActivity.java

350 lines
10 KiB
Java
Raw Normal View History

2014-01-23 20:04:05 -05:00
package de.gultsch.chat.ui;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
2014-01-23 20:04:05 -05:00
import de.gultsch.chat.R;
import de.gultsch.chat.R.id;
import de.gultsch.chat.entities.Conversation;
2014-02-03 12:38:47 -05:00
import de.gultsch.chat.utils.UIHelper;
import android.net.Uri;
2014-01-23 20:04:05 -05:00
import android.os.Bundle;
import android.app.FragmentTransaction;
import android.content.Context;
import android.content.Intent;
import android.support.v4.widget.SlidingPaneLayout;
import android.support.v4.widget.SlidingPaneLayout.PanelSlideListener;
import android.util.Log;
2014-01-24 04:50:18 -05:00
import android.view.KeyEvent;
import android.view.LayoutInflater;
2014-01-23 20:04:05 -05:00
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
2014-01-23 20:04:05 -05:00
import android.view.inputmethod.InputMethodManager;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
2014-01-23 20:04:05 -05:00
import android.widget.ListView;
import android.widget.TextView;
import android.widget.ImageView;
2014-01-23 20:04:05 -05:00
public class ConversationActivity extends XmppActivity {
2014-01-24 04:50:18 -05:00
public static final String VIEW_CONVERSATION = "viewConversation";
2014-02-03 12:38:47 -05:00
public static final String CONVERSATION = "conversationUuid";
2014-01-23 20:04:05 -05:00
protected SlidingPaneLayout spl;
2014-01-24 04:50:18 -05:00
private List<Conversation> conversationList = new ArrayList<Conversation>();
private int selectedConversation = 0;
private ListView listView;
private boolean paneShouldBeOpen = true;
2014-02-01 09:07:20 -05:00
private ArrayAdapter<Conversation> listAdapter;
private OnConversationListChangedListener onConvChanged = new OnConversationListChangedListener() {
@Override
public void onConversationListChanged() {
final Conversation currentConv = conversationList.get(selectedConversation);
2014-02-01 09:07:20 -05:00
conversationList.clear();
conversationList.addAll(xmppConnectionService
.getConversations());
runOnUiThread(new Runnable() {
@Override
public void run() {
updateConversationList();
for(int i = 0; i < conversationList.size(); ++i) {
if (currentConv.equals(conversationList.get(i))) {
selectedConversation = i;
break;
}
}
2014-02-01 09:07:20 -05:00
if(paneShouldBeOpen) {
selectedConversation = 0;
if (conversationList.size() >= 1) {
swapConversationFragment();
} else {
startActivity(new Intent(getApplicationContext(), NewConversationActivity.class));
finish();
}
}
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager().findFragmentByTag("conversation");
if (selectedFragment!=null) {
selectedFragment.updateMessages();
}
2014-02-01 09:07:20 -05:00
}
});
}
};
public List<Conversation> getConversationList() {
return this.conversationList;
}
2014-01-24 04:50:18 -05:00
public int getSelectedConversation() {
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-23 20:04:05 -05:00
@Override
protected void onCreate(Bundle savedInstanceState) {
2014-01-24 04:50:18 -05:00
super.onCreate(savedInstanceState);
2014-01-24 04:50:18 -05:00
setContentView(R.layout.fragment_conversations_overview);
2014-01-24 04:50:18 -05:00
listView = (ListView) findViewById(R.id.list);
2014-02-01 09:07:20 -05:00
this.listAdapter = new ArrayAdapter<Conversation>(this,
R.layout.conversation_list_row, conversationList) {
@Override
public View getView(int position, View view, ViewGroup parent) {
if (view == null) {
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = (View) inflater.inflate(
R.layout.conversation_list_row, null);
}
((TextView) view.findViewById(R.id.conversation_name))
.setText(getItem(position).getName());
((TextView) view.findViewById(R.id.conversation_lastmsg)).setText(getItem(position).getLatestMessage());
2014-01-25 21:27:55 -05:00
((TextView) view.findViewById(R.id.conversation_lastupdate))
2014-02-03 12:38:47 -05:00
.setText(UIHelper.readableTimeDifference(getItem(position).getLatestMessageDate()));
Uri profilePhoto = getItem(position).getProfilePhotoUri();
ImageView imageView = (ImageView) view.findViewById(R.id.conversation_image);
if (profilePhoto!=null) {
imageView.setImageURI(profilePhoto);
} else {
2014-02-03 12:38:47 -05:00
imageView.setImageBitmap(UIHelper.getUnknownContactPicture(getItem(position).getName(),200));
}
((ImageView) view.findViewById(R.id.conversation_image))
.setImageURI(getItem(position).getProfilePhotoUri());
return view;
}
2014-02-01 09:07:20 -05:00
};
listView.setAdapter(this.listAdapter);
2014-01-23 20:04:05 -05:00
listView.setOnItemClickListener(new OnItemClickListener() {
@Override
2014-01-24 04:50:18 -05:00
public void onItemClick(AdapterView<?> arg0, View clickedView,
int position, long arg3) {
paneShouldBeOpen = false;
if (selectedConversation != position) {
selectedConversation = position;
swapConversationFragment(); //.onBackendConnected(conversationList.get(position));
} else {
spl.closePane();
}
2014-01-23 20:04:05 -05: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 04:50:18 -05:00
2014-01-23 20:04:05 -05:00
@Override
public void onPanelOpened(View arg0) {
paneShouldBeOpen = true;
2014-01-23 20:04:05 -05:00
getActionBar().setDisplayHomeAsUpEnabled(false);
getActionBar().setTitle(R.string.app_name);
invalidateOptionsMenu();
2014-01-24 04:50:18 -05: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-23 20:04:05 -05:00
}
2014-01-24 04:50:18 -05:00
2014-01-23 20:04:05 -05:00
@Override
public void onPanelClosed(View arg0) {
paneShouldBeOpen = false;
2014-01-24 04:50:18 -05:00
if (conversationList.size() > 0) {
getActionBar().setDisplayHomeAsUpEnabled(true);
getActionBar().setTitle(conversationList.get(selectedConversation).getName());
2014-01-24 04:50:18 -05:00
invalidateOptionsMenu();
}
2014-01-23 20:04:05 -05:00
}
@Override
public void onPanelSlide(View arg0, float arg1) {
// TODO Auto-generated method stub
2014-01-24 04:50:18 -05:00
2014-01-23 20:04:05 -05:00
}
});
}
2014-01-24 04:50:18 -05:00
2014-01-23 20:04:05 -05:00
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.conversations, menu);
2014-01-24 04:50:18 -05:00
2014-01-23 20:04:05 -05: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);
}
return true;
}
2014-01-24 04:50:18 -05:00
2014-01-23 20:04:05 -05:00
@Override
public boolean onOptionsItemSelected(MenuItem item) {
2014-01-24 04:50:18 -05:00
switch (item.getItemId()) {
2014-01-23 20:04:05 -05: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));
break;
case R.id.action_archive:
Conversation conv = getConversationList().get(selectedConversation);
conv.setStatus(Conversation.STATUS_ARCHIVED);
2014-02-01 09:07:20 -05:00
paneShouldBeOpen = true;
spl.openPane();
xmppConnectionService.archiveConversation(conv);
selectedConversation = 0;
break;
2014-01-23 20:04:05 -05:00
default:
break;
}
2014-01-24 04:50:18 -05:00
return super.onOptionsItemSelected(item);
2014-01-23 20:04:05 -05:00
}
protected ConversationFragment swapConversationFragment() {
ConversationFragment selectedFragment = new ConversationFragment();
2014-01-24 04:50:18 -05:00
FragmentTransaction transaction = getFragmentManager()
.beginTransaction();
transaction.replace(R.id.selected_conversation, selectedFragment,"conversation");
2014-01-23 20:04:05 -05:00
transaction.commit();
return selectedFragment;
2014-01-23 20:04:05 -05:00
}
2014-01-24 04:50:18 -05: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 09:07:20 -05:00
@Override
protected void onPause() {
2014-02-01 09:07:20 -05:00
super.onPause();
if (xmppConnectionServiceBound) {
Log.d("xmppService","called on stop. remove listener");
xmppConnectionService.removeOnConversationListChangedListener();
unbindService(mConnection);
xmppConnectionServiceBound = false;
}
}
@Override
void onBackendConnected() {
2014-02-01 09:07:20 -05:00
xmppConnectionService.setOnConversationListChangedListener(this.onConvChanged);
if (conversationList.size()==0) {
Log.d("gultsch","conversation list is empty fetch new");
conversationList.clear();
conversationList.addAll(xmppConnectionService
.getConversations());
for(Conversation conversation : conversationList) {
conversation.setMessages(xmppConnectionService.getMessages(conversation));
}
this.updateConversationList();
}
if ((getIntent().getAction().equals(Intent.ACTION_VIEW) && (!handledViewIntent))) {
if (getIntent().getType().equals(
ConversationActivity.VIEW_CONVERSATION)) {
handledViewIntent = true;
String convToView = (String) getIntent().getExtras().get(CONVERSATION);
for(int i = 0; i < conversationList.size(); ++i) {
if (conversationList.get(i).getUuid().equals(convToView)) {
selectedConversation = i;
}
}
paneShouldBeOpen = false;
swapConversationFragment();
}
} else {
if (xmppConnectionService.getAccounts().size() == 0) {
startActivity(new Intent(this, ManageAccountActivity.class));
finish();
} else if (conversationList.size() <= 0) {
//add no history
startActivity(new Intent(this, NewConversationActivity.class));
finish();
} else {
spl.openPane();
//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");
selectedConversation = 0;
Log.d("gultsch","selected conversation is #"+selectedConversation);
swapConversationFragment();
}
}
}
}
2014-01-23 20:04:05 -05:00
}