Use colors from the Android color palette for the VPN status texts

This commit is contained in:
Tobias Brunner
2012-08-13 11:22:14 +02:00
parent 374f62535f
commit c0fe43f002
2 changed files with 26 additions and 3 deletions
@@ -0,0 +1,24 @@
<?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>
@@ -33,7 +33,6 @@ import android.content.Context;
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;
@@ -213,7 +212,7 @@ public class VpnStateFragment extends Fragment implements VpnStateListener
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);
@@ -254,7 +253,7 @@ public class VpnStateFragment extends Fragment implements VpnStateListener
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: