summaryrefslogtreecommitdiff
path: root/taler-kotlin-common
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-04-16 15:06:06 -0300
committerTorsten Grote <t@grobox.de>2020-04-16 15:06:06 -0300
commitf920fa7fa12db5d6fd40844ffb8402426d0a2b07 (patch)
treebff6056188d6424c63eba240d67f9875ea866daa /taler-kotlin-common
parentbe8c9a25fe8df7d5bf8e55b38103522f90737e92 (diff)
downloadtaler-android-f920fa7fa12db5d6fd40844ffb8402426d0a2b07.tar.gz
taler-android-f920fa7fa12db5d6fd40844ffb8402426d0a2b07.tar.bz2
taler-android-f920fa7fa12db5d6fd40844ffb8402426d0a2b07.zip
[wallet] allow transactions to be selected by long tap
Diffstat (limited to 'taler-kotlin-common')
-rw-r--r--taler-kotlin-common/src/main/res/drawable/selectable_background.xml21
-rw-r--r--taler-kotlin-common/src/main/res/values-night/colors.xml5
-rw-r--r--taler-kotlin-common/src/main/res/values/colors.xml24
3 files changed, 50 insertions, 0 deletions
diff --git a/taler-kotlin-common/src/main/res/drawable/selectable_background.xml b/taler-kotlin-common/src/main/res/drawable/selectable_background.xml
new file mode 100644
index 0000000..3c383a8
--- /dev/null
+++ b/taler-kotlin-common/src/main/res/drawable/selectable_background.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ This file is part of GNU Taler
+ ~ (C) 2020 Taler Systems S.A.
+ ~
+ ~ GNU Taler 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 3, or (at your option) any later version.
+ ~
+ ~ GNU Taler 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.
+ ~
+ ~ You should have received a copy of the GNU General Public License along with
+ ~ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+ -->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:drawable="@color/selectedBackground" android:state_activated="true" />
+ <item android:drawable="@android:color/transparent" />
+</selector>
diff --git a/taler-kotlin-common/src/main/res/values-night/colors.xml b/taler-kotlin-common/src/main/res/values-night/colors.xml
new file mode 100644
index 0000000..10bdbb9
--- /dev/null
+++ b/taler-kotlin-common/src/main/res/values-night/colors.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <color name="highlightedBackground">#2E2E2E</color>
+ <color name="selectedBackground">#363636</color>
+</resources>
diff --git a/taler-kotlin-common/src/main/res/values/colors.xml b/taler-kotlin-common/src/main/res/values/colors.xml
new file mode 100644
index 0000000..c916442
--- /dev/null
+++ b/taler-kotlin-common/src/main/res/values/colors.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ This file is part of GNU Taler
+ ~ (C) 2020 Taler Systems S.A.
+ ~
+ ~ GNU Taler 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 3, or (at your option) any later version.
+ ~
+ ~ GNU Taler 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.
+ ~
+ ~ You should have received a copy of the GNU General Public License along with
+ ~ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+ -->
+
+<resources>
+ <color name="highlightedBackground">#E4E4E4</color>
+ <color name="selectedBackground">#DADADA</color>
+
+ <color name="green">#388E3C</color>
+ <color name="red">#C62828</color>
+</resources>