2014-01-24 01:04:05 +00:00
|
|
|
package de.gultsch.chat.ui;
|
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
import de.gultsch.chat.R;
|
|
|
|
import de.gultsch.chat.entities.Account;
|
|
|
|
import de.gultsch.chat.ui.EditAccount.EditAccountListener;
|
2014-01-28 22:15:30 +00:00
|
|
|
import android.app.Activity;
|
2014-01-28 18:21:54 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
|
|
|
import android.widget.ArrayAdapter;
|
|
|
|
import android.widget.ListView;
|
|
|
|
import android.widget.TextView;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
public class ManageAccountActivity extends XmppActivity {
|
|
|
|
|
|
|
|
protected List<Account> accountList = new ArrayList<Account>();
|
|
|
|
protected ListView accountListView;
|
|
|
|
protected ArrayAdapter<Account> accountListViewAdapter;
|
2014-02-04 14:09:50 +00:00
|
|
|
protected OnAccountListChangedListener accountChanged = new OnAccountListChangedListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAccountListChangedListener() {
|
|
|
|
Log.d("xmppService", "ui on account list changed listener");
|
|
|
|
accountList.clear();
|
|
|
|
accountList.addAll(xmppConnectionService.getAccounts());
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
if (accountList.size() == 1) {
|
|
|
|
startActivity(new Intent(getApplicationContext(),
|
|
|
|
NewConversationActivity.class));
|
|
|
|
}
|
|
|
|
accountListViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
|
|
|
setContentView(R.layout.manage_accounts);
|
2014-02-04 14:09:50 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
accountListView = (ListView) findViewById(R.id.account_list);
|
2014-02-04 14:09:50 +00:00
|
|
|
accountListViewAdapter = new ArrayAdapter<Account>(
|
|
|
|
getApplicationContext(), R.layout.account_row, this.accountList) {
|
2014-01-28 18:21:54 +00:00
|
|
|
@Override
|
|
|
|
public View getView(int position, View view, ViewGroup parent) {
|
2014-02-04 14:09:50 +00:00
|
|
|
Account account = getItem(position);
|
2014-01-28 18:21:54 +00:00
|
|
|
if (view == null) {
|
|
|
|
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
view = (View) inflater.inflate(R.layout.account_row, null);
|
|
|
|
}
|
2014-02-04 14:09:50 +00:00
|
|
|
((TextView) view.findViewById(R.id.account_jid))
|
|
|
|
.setText(account.getJid());
|
|
|
|
TextView statusView = (TextView) view
|
|
|
|
.findViewById(R.id.account_status);
|
|
|
|
switch (account.getStatus()) {
|
|
|
|
case Account.STATUS_ONLINE:
|
|
|
|
statusView.setText("online");
|
|
|
|
statusView.setTextColor(0xFF83b600);
|
|
|
|
break;
|
|
|
|
case Account.STATUS_OFFLINE:
|
|
|
|
statusView.setText("offline");
|
|
|
|
statusView.setTextColor(0xFFe92727);
|
|
|
|
break;
|
|
|
|
case Account.STATUS_UNAUTHORIZED:
|
|
|
|
statusView.setText("unauthorized");
|
|
|
|
statusView.setTextColor(0xFFe92727);
|
|
|
|
break;
|
|
|
|
case Account.STATUS_SERVER_NOT_FOUND:
|
|
|
|
statusView.setText("server not found");
|
|
|
|
statusView.setTextColor(0xFFe92727);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
return view;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
accountListView.setAdapter(this.accountListViewAdapter);
|
|
|
|
accountListView.setOnItemClickListener(new OnItemClickListener() {
|
|
|
|
|
|
|
|
@Override
|
2014-02-04 14:09:50 +00:00
|
|
|
public void onItemClick(AdapterView<?> arg0, View view,
|
|
|
|
int position, long arg3) {
|
2014-01-28 18:21:54 +00:00
|
|
|
EditAccount dialog = new EditAccount();
|
|
|
|
dialog.setAccount(accountList.get(position));
|
|
|
|
dialog.setEditAccountListener(new EditAccountListener() {
|
2014-02-04 14:09:50 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
@Override
|
|
|
|
public void onAccountEdited(Account account) {
|
|
|
|
xmppConnectionService.updateAccount(account);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAccountDelete(Account account) {
|
|
|
|
xmppConnectionService.deleteAccount(account);
|
|
|
|
}
|
|
|
|
});
|
2014-02-04 14:09:50 +00:00
|
|
|
dialog.show(getFragmentManager(), "edit_account");
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-04 14:09:50 +00:00
|
|
|
protected void onStop() {
|
|
|
|
super.onStop();
|
2014-01-28 18:21:54 +00:00
|
|
|
if (xmppConnectionServiceBound) {
|
2014-02-04 14:09:50 +00:00
|
|
|
xmppConnectionService.removeOnAccountListChangedListener();
|
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-04 14:09:50 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
2014-02-04 14:09:50 +00:00
|
|
|
xmppConnectionService.setOnAccountListChangedListener(accountChanged);
|
2014-01-28 18:21:54 +00:00
|
|
|
this.accountList.clear();
|
|
|
|
this.accountList.addAll(xmppConnectionService.getAccounts());
|
|
|
|
accountListViewAdapter.notifyDataSetChanged();
|
2014-01-28 22:15:30 +00:00
|
|
|
if (this.accountList.size() == 0) {
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(false);
|
|
|
|
addAccount();
|
|
|
|
}
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
2014-02-04 14:09:50 +00:00
|
|
|
|
2014-01-28 18:21:54 +00: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.manageaccounts, menu);
|
|
|
|
return true;
|
|
|
|
}
|
2014-02-04 14:09:50 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.action_settings:
|
|
|
|
startActivity(new Intent(this, SettingsActivity.class));
|
|
|
|
break;
|
|
|
|
case R.id.action_add_account:
|
2014-01-28 22:15:30 +00:00
|
|
|
addAccount();
|
2014-01-28 18:21:54 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
2014-01-28 22:15:30 +00:00
|
|
|
|
|
|
|
protected void addAccount() {
|
|
|
|
final Activity activity = this;
|
|
|
|
EditAccount dialog = new EditAccount();
|
|
|
|
dialog.setEditAccountListener(new EditAccountListener() {
|
2014-02-04 14:09:50 +00:00
|
|
|
|
2014-01-28 22:15:30 +00:00
|
|
|
@Override
|
|
|
|
public void onAccountEdited(Account account) {
|
|
|
|
xmppConnectionService.createAccount(account);
|
|
|
|
activity.getActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAccountDelete(Account account) {
|
2014-02-04 14:09:50 +00:00
|
|
|
// this will never be called
|
2014-01-28 22:15:30 +00:00
|
|
|
}
|
|
|
|
});
|
2014-02-04 14:09:50 +00:00
|
|
|
dialog.show(getFragmentManager(), "add_account");
|
2014-01-28 22:15:30 +00:00
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|