From ea3250845fb266a2ecd5ebeba561bc99101bf3de Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Wed, 15 Apr 2020 11:26:51 -0300 Subject: [wallet] rename history to transactions --- wallet/src/main/res/layout/fragment_event_paid.xml | 30 +++---- .../main/res/layout/fragment_event_withdraw.xml | 12 +-- .../src/main/res/layout/fragment_show_history.xml | 46 ----------- .../src/main/res/layout/fragment_transactions.xml | 46 +++++++++++ wallet/src/main/res/layout/history_payment.xml | 87 -------------------- wallet/src/main/res/layout/history_receive.xml | 92 ---------------------- wallet/src/main/res/layout/history_row.xml | 76 ------------------ wallet/src/main/res/layout/transaction_in.xml | 92 ++++++++++++++++++++++ wallet/src/main/res/layout/transaction_out.xml | 87 ++++++++++++++++++++ wallet/src/main/res/layout/transaction_row.xml | 76 ++++++++++++++++++ 10 files changed, 322 insertions(+), 322 deletions(-) delete mode 100644 wallet/src/main/res/layout/fragment_show_history.xml create mode 100644 wallet/src/main/res/layout/fragment_transactions.xml delete mode 100644 wallet/src/main/res/layout/history_payment.xml delete mode 100644 wallet/src/main/res/layout/history_receive.xml delete mode 100644 wallet/src/main/res/layout/history_row.xml create mode 100644 wallet/src/main/res/layout/transaction_in.xml create mode 100644 wallet/src/main/res/layout/transaction_out.xml create mode 100644 wallet/src/main/res/layout/transaction_row.xml (limited to 'wallet/src/main/res/layout') diff --git a/wallet/src/main/res/layout/fragment_event_paid.xml b/wallet/src/main/res/layout/fragment_event_paid.xml index 4485744..3f17464 100644 --- a/wallet/src/main/res/layout/fragment_event_paid.xml +++ b/wallet/src/main/res/layout/fragment_event_paid.xml @@ -20,7 +20,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:fillViewport="true" - tools:context=".history.HistoryEventFragment"> + tools:context=".transactions.TransactionDetailFragment"> + tools:context=".transactions.TransactionDetailFragment"> - - - - - - - - - - diff --git a/wallet/src/main/res/layout/fragment_transactions.xml b/wallet/src/main/res/layout/fragment_transactions.xml new file mode 100644 index 0000000..a2aebcd --- /dev/null +++ b/wallet/src/main/res/layout/fragment_transactions.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + diff --git a/wallet/src/main/res/layout/history_payment.xml b/wallet/src/main/res/layout/history_payment.xml deleted file mode 100644 index 33cb676..0000000 --- a/wallet/src/main/res/layout/history_payment.xml +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/wallet/src/main/res/layout/history_receive.xml b/wallet/src/main/res/layout/history_receive.xml deleted file mode 100644 index 5f386a2..0000000 --- a/wallet/src/main/res/layout/history_receive.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/wallet/src/main/res/layout/history_row.xml b/wallet/src/main/res/layout/history_row.xml deleted file mode 100644 index 5eac44b..0000000 --- a/wallet/src/main/res/layout/history_row.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/wallet/src/main/res/layout/transaction_in.xml b/wallet/src/main/res/layout/transaction_in.xml new file mode 100644 index 0000000..f116240 --- /dev/null +++ b/wallet/src/main/res/layout/transaction_in.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + diff --git a/wallet/src/main/res/layout/transaction_out.xml b/wallet/src/main/res/layout/transaction_out.xml new file mode 100644 index 0000000..49f76b7 --- /dev/null +++ b/wallet/src/main/res/layout/transaction_out.xml @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + diff --git a/wallet/src/main/res/layout/transaction_row.xml b/wallet/src/main/res/layout/transaction_row.xml new file mode 100644 index 0000000..ac6bdb7 --- /dev/null +++ b/wallet/src/main/res/layout/transaction_row.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3