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-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-01-24 23:58:51 +01:00
|
|
|
import de.gultsch.chat.entities.Account;
|
|
|
|
import de.gultsch.chat.entities.Contact;
|
|
|
|
import de.gultsch.chat.entities.Conversation;
|
|
|
|
import de.gultsch.chat.persistance.DatabaseBackend;
|
2014-01-24 02:04:05 +01: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 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";
|
|
|
|
private static final String LOGTAG = "secureconversation";
|
|
|
|
protected static final String CONVERSATION = "conversationUuid";
|
2014-01-24 02:04:05 +01:00
|
|
|
|
|
|
|
protected SlidingPaneLayout spl;
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
final List<Conversation> conversationList = new ArrayList<Conversation>();
|
2014-01-24 10:50:18 +01:00
|
|
|
|
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-24 02:04:05 +01:00
|
|
|
final ListView listView = (ListView) findViewById(R.id.list);
|
2014-01-25 19:33:12 +01:00
|
|
|
|
|
|
|
listView.setAdapter(new ArrayAdapter<Conversation>(this,
|
|
|
|
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-01-25 19:33:12 +01:00
|
|
|
((TextView) view.findViewById(R.id.conversation_name))
|
|
|
|
.setText(getItem(position).getName());
|
|
|
|
((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-01-24 23:58:51 +01:00
|
|
|
});
|
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-25 19:33:12 +01:00
|
|
|
Log.d(LOGTAG, "List view was klicked on position " + position);
|
2014-01-24 23:58:51 +01:00
|
|
|
swapConversationFragment(conversationList.get(position));
|
2014-01-25 19:33:12 +01:00
|
|
|
getActionBar().setTitle(
|
|
|
|
conversationList.get(position).getName());
|
2014-01-24 02:04:05 +01:00
|
|
|
spl.closePane();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
spl = (SlidingPaneLayout) findViewById(id.slidingpanelayout);
|
|
|
|
spl.setParallaxDistance(150);
|
|
|
|
spl.openPane();
|
|
|
|
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) {
|
|
|
|
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
|
|
|
listView.requestFocus();
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
public void onPanelClosed(View arg0) {
|
2014-01-24 10:50:18 +01:00
|
|
|
if (conversationList.size() > 0) {
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
2014-01-25 19:33:12 +01:00
|
|
|
ConversationFragment convFrag = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentById(R.id.selected_conversation);
|
|
|
|
if (convFrag == null) {
|
|
|
|
Log.d(LOGTAG, "conversation fragment was not found.");
|
|
|
|
return; // just do nothing. at least dont crash
|
|
|
|
}
|
|
|
|
getActionBar().setTitle(
|
|
|
|
convFrag.getConversation().getName());
|
2014-01-24 10:50:18 +01:00
|
|
|
invalidateOptionsMenu();
|
|
|
|
}
|
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) {
|
|
|
|
// Inflate the menu; this adds items to the action bar if it is present.
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
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-24 23:58:51 +01:00
|
|
|
case R.id.action_archive:
|
2014-01-25 19:33:12 +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-24 23:58:51 +01:00
|
|
|
protected void swapConversationFragment(Conversation conv) {
|
2014-01-25 19:33:12 +01:00
|
|
|
Log.d(LOGTAG, "swap conversation fragment to " + conv.getName());
|
|
|
|
ConversationFragment selectedFragment = new ConversationFragment();
|
|
|
|
selectedFragment.setConversation(conv);
|
2014-01-24 10:50:18 +01:00
|
|
|
FragmentTransaction transaction = getFragmentManager()
|
|
|
|
.beginTransaction();
|
2014-01-24 02:04:05 +01:00
|
|
|
transaction.replace(R.id.selected_conversation, selectedFragment);
|
|
|
|
transaction.commit();
|
|
|
|
}
|
|
|
|
|
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-01-25 19:33:12 +01:00
|
|
|
@Override
|
|
|
|
public void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
conversationList.clear();
|
|
|
|
conversationList.addAll(xmppConnectionService
|
|
|
|
.getConversations(Conversation.STATUS_AVAILABLE));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
void servConnected() {
|
|
|
|
conversationList.clear();
|
|
|
|
conversationList.addAll(xmppConnectionService
|
|
|
|
.getConversations(Conversation.STATUS_AVAILABLE));
|
|
|
|
|
|
|
|
//spl.openPane();
|
|
|
|
|
|
|
|
if ((getIntent().getAction().equals(Intent.ACTION_VIEW) && (!handledViewIntent))) {
|
|
|
|
if (getIntent().getType().equals(
|
|
|
|
ConversationActivity.VIEW_CONVERSATION)) {
|
|
|
|
handledViewIntent = true;
|
|
|
|
|
|
|
|
swapConversationFragment(conversationList.get(0));
|
|
|
|
spl.closePane();
|
|
|
|
|
|
|
|
// why do i even need this
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
getActionBar().setTitle(conversationList.get(0).getName());
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (conversationList.size() <= 0) {
|
|
|
|
//add no history
|
|
|
|
startActivity(new Intent(this, NewConversationActivity.class));
|
|
|
|
finish();
|
|
|
|
} else {
|
|
|
|
swapConversationFragment(conversationList.get(0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|