2014-07-31 13:09:34 +00:00
|
|
|
package eu.siacs.conversations.ui.adapter;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.ArrayAdapter;
|
2015-04-13 16:19:40 +00:00
|
|
|
import android.widget.CompoundButton;
|
2014-07-31 13:09:34 +00:00
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2015-07-20 12:26:29 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
2015-08-03 20:58:17 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2015-07-20 12:26:29 +00:00
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.ui.ManageAccountActivity;
|
|
|
|
import eu.siacs.conversations.ui.XmppActivity;
|
|
|
|
import eu.siacs.conversations.ui.widget.Switch;
|
|
|
|
|
2014-07-31 13:09:34 +00:00
|
|
|
public class AccountAdapter extends ArrayAdapter<Account> {
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2014-07-31 13:09:34 +00:00
|
|
|
private XmppActivity activity;
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2014-07-31 13:09:34 +00:00
|
|
|
public AccountAdapter(XmppActivity activity, List<Account> objects) {
|
|
|
|
super(activity, 0, objects);
|
|
|
|
this.activity = activity;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int position, View view, ViewGroup parent) {
|
2015-04-01 10:14:05 +00:00
|
|
|
final Account account = getItem(position);
|
2014-07-31 13:09:34 +00:00
|
|
|
if (view == null) {
|
|
|
|
LayoutInflater inflater = (LayoutInflater) getContext()
|
|
|
|
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
2014-10-26 17:54:10 +00:00
|
|
|
view = inflater.inflate(R.layout.account_row, parent, false);
|
2014-07-31 13:09:34 +00:00
|
|
|
}
|
|
|
|
TextView jid = (TextView) view.findViewById(R.id.account_jid);
|
2015-08-03 20:58:17 +00:00
|
|
|
if (Config.DOMAIN_LOCK != null) {
|
|
|
|
jid.setText(account.getJid().getLocalpart());
|
|
|
|
} else {
|
|
|
|
jid.setText(account.getJid().toBareJid().toString());
|
|
|
|
}
|
2014-07-31 13:09:34 +00:00
|
|
|
TextView statusView = (TextView) view.findViewById(R.id.account_status);
|
|
|
|
ImageView imageView = (ImageView) view.findViewById(R.id.account_image);
|
2015-04-01 10:14:05 +00:00
|
|
|
imageView.setImageBitmap(activity.avatarService().get(account, activity.getPixel(48)));
|
|
|
|
statusView.setText(getContext().getString(account.getStatus().getReadableId()));
|
|
|
|
switch (account.getStatus()) {
|
|
|
|
case ONLINE:
|
|
|
|
statusView.setTextColor(activity.getOnlineColor());
|
|
|
|
break;
|
|
|
|
case DISABLED:
|
|
|
|
case CONNECTING:
|
|
|
|
statusView.setTextColor(activity.getSecondaryTextColor());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
statusView.setTextColor(activity.getWarningTextColor());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
final Switch tglAccountState = (Switch) view.findViewById(R.id.tgl_account_status);
|
2015-07-17 21:58:53 +00:00
|
|
|
final boolean isDisabled = (account.getStatus() == Account.State.DISABLED);
|
2015-07-18 17:38:52 +00:00
|
|
|
tglAccountState.setChecked(!isDisabled,false);
|
2015-04-13 16:19:40 +00:00
|
|
|
tglAccountState.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
2015-04-01 10:14:05 +00:00
|
|
|
@Override
|
2015-04-13 16:19:40 +00:00
|
|
|
public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
|
|
|
|
if (b == isDisabled && activity instanceof ManageAccountActivity) {
|
|
|
|
((ManageAccountActivity) activity).onClickTglAccountState(account,b);
|
2015-04-01 10:14:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-07-31 13:09:34 +00:00
|
|
|
return view;
|
|
|
|
}
|
|
|
|
}
|