--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2012 Tobias Brunner
+ Hochschule fuer Technik Rapperswil
+
+ This program is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by the
+ Free Software Foundation; either version 2 of the License, or (at your
+ option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
+
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ for more details.
+-->
+<resources>
+
+ <color
+ name="error_text">#D9192C</color>
+
+ <color
+ name="success_text">#99CC00</color>
+
+</resources>
import android.content.DialogInterface;
import android.content.Intent;
import android.content.ServiceConnection;
-import android.graphics.Color;
import android.os.Bundle;
import android.os.IBinder;
import android.view.LayoutInflater;
showProfile(true);
enableActionButton(true);
mStateView.setText(R.string.state_connected);
- mStateView.setTextColor(Color.GREEN);
+ mStateView.setTextColor(getResources().getColor(R.color.success_text));
break;
case DISCONNECTING:
showProfile(true);
showProfile(true);
enableActionButton(false);
mStateView.setText(R.string.state_error);
- mStateView.setTextColor(Color.RED);
+ mStateView.setTextColor(getResources().getColor(R.color.error_text));
switch (error)
{
case AUTH_FAILED: