Merge pull request #924 from andersruneson/changeonlinecolor

Changed online color to green instead of primary
This commit is contained in:
Daniel Gultsch 2015-01-24 00:28:29 +01:00
commit 7769d305e6
2 changed files with 5 additions and 1 deletions

View File

@ -687,6 +687,10 @@ public abstract class XmppActivity extends Activity {
return this.mPrimaryColor;
}
public int getOnlineColor() {
return this.mColorGreen;
}
public int getSecondaryBackgroundColor() {
return this.mSecondaryBackgroundColor;
}

View File

@ -39,7 +39,7 @@ public class AccountAdapter extends ArrayAdapter<Account> {
statusView.setText(getContext().getString(account.getStatus().getReadableId()));
switch (account.getStatus()) {
case ONLINE:
statusView.setTextColor(activity.getPrimaryColor());
statusView.setTextColor(activity.getOnlineColor());
break;
case DISABLED:
case CONNECTING: