diff options
author | Torsten Grote <t@grobox.de> | 2020-04-15 13:49:25 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2020-04-15 13:49:25 -0300 |
commit | ea2abcac101645e429cab734c726e3b6a744dae9 (patch) | |
tree | ed70393d7889b10446d5dbe1f402835e2dab1e2c /wallet/src/main/res/drawable | |
parent | ea3250845fb266a2ecd5ebeba561bc99101bf3de (diff) | |
download | taler-android-ea2abcac101645e429cab734c726e3b6a744dae9.tar.gz taler-android-ea2abcac101645e429cab734c726e3b6a744dae9.tar.bz2 taler-android-ea2abcac101645e429cab734c726e3b6a744dae9.zip |
[wallet] show simplified transactions per currency
Diffstat (limited to 'wallet/src/main/res/drawable')
-rw-r--r-- | wallet/src/main/res/drawable/ic_history_black_24dp.xml | 25 | ||||
-rw-r--r-- | wallet/src/main/res/drawable/pending_border.xml | 6 |
2 files changed, 3 insertions, 28 deletions
diff --git a/wallet/src/main/res/drawable/ic_history_black_24dp.xml b/wallet/src/main/res/drawable/ic_history_black_24dp.xml deleted file mode 100644 index 5836444..0000000 --- a/wallet/src/main/res/drawable/ic_history_black_24dp.xml +++ /dev/null @@ -1,25 +0,0 @@ -<!-- - ~ 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/> - --> - -<vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="24dp" - android:height="24dp" - android:viewportWidth="24.0" - android:viewportHeight="24.0"> - <path - android:fillColor="#FF000000" - android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l3.89,3.89 0.07,0.14L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.28,2.54 0.72,-1.21 -3.5,-2.08L13.5,8L12,8z" /> -</vector> diff --git a/wallet/src/main/res/drawable/pending_border.xml b/wallet/src/main/res/drawable/pending_border.xml index c858219..0e201dc 100644 --- a/wallet/src/main/res/drawable/pending_border.xml +++ b/wallet/src/main/res/drawable/pending_border.xml @@ -18,14 +18,14 @@ android:shape="rectangle"> <!-- View background color --> - <solid android:color="@android:color/transparent"></solid> + <solid android:color="@android:color/transparent"/> <!-- View border color and width --> <stroke android:width="1dp" - android:color="@color/colorPrimary"></stroke> + android:color="@color/colorPrimary"/> <!-- The radius makes the corners rounded --> - <corners android:radius="2dp"></corners> + <corners android:radius="2dp"/> </shape>
\ No newline at end of file |