aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2017-06-27 10:13:54 +0200
committerTobias Brunner <tobias@strongswan.org>2017-07-03 10:27:53 +0200
commit34496b787de90d53e8fe1bc4ae96d756caa3deec (patch)
tree7fcec22c38e0771157f8855f0aba0a49c1246e67
parent0974addf93ed7d2a8ac9215f7cb0cd881d662747 (diff)
downloadstrongswan-34496b787de90d53e8fe1bc4ae96d756caa3deec.tar.bz2
strongswan-34496b787de90d53e8fe1bc4ae96d756caa3deec.tar.xz
android: Add text color for checkable list entries
-rw-r--r--src/frontends/android/app/src/main/res/color/checkable_text_color.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/frontends/android/app/src/main/res/color/checkable_text_color.xml b/src/frontends/android/app/src/main/res/color/checkable_text_color.xml
new file mode 100644
index 000000000..e29e667b6
--- /dev/null
+++ b/src/frontends/android/app/src/main/res/color/checkable_text_color.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2017 Tobias Brunner
+ HSR 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.
+-->
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_checked="false" android:color="@android:color/secondary_text_dark" />
+ <item android:color="@android:color/primary_text_dark" />
+</selector>