From c0fe43f0029c171c05df107f7338497b17fe2e0b Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 9 Aug 2012 15:01:19 +0200 Subject: [PATCH] Use colors from the Android color palette for the VPN status texts --- src/frontends/android/res/values/colors.xml | 24 +++++++++++++++++++ .../android/ui/VpnStateFragment.java | 5 ++-- 2 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 src/frontends/android/res/values/colors.xml diff --git a/src/frontends/android/res/values/colors.xml b/src/frontends/android/res/values/colors.xml new file mode 100644 index 0000000000..be64d5d5a4 --- /dev/null +++ b/src/frontends/android/res/values/colors.xml @@ -0,0 +1,24 @@ + + + + + #D9192C + + #99CC00 + + diff --git a/src/frontends/android/src/org/strongswan/android/ui/VpnStateFragment.java b/src/frontends/android/src/org/strongswan/android/ui/VpnStateFragment.java index ac632fd988..b86fd187b7 100644 --- a/src/frontends/android/src/org/strongswan/android/ui/VpnStateFragment.java +++ b/src/frontends/android/src/org/strongswan/android/ui/VpnStateFragment.java @@ -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: -- 2.47.2