From d835a9b8f38acf1970acc18ce2030f7d5f7377dd Mon Sep 17 00:00:00 2001 From: Fup Duck Date: Tue, 28 Nov 2017 01:51:19 +0100 Subject: base for sidebar --- app/src/main/res/layout/activity_main.xml | 42 +++++++++++++++++++++++++++++++ app/src/main/res/layout/drawer_main.xml | 22 ++++++++++++++++ app/src/main/res/layout/fragment_main.xml | 16 ++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 app/src/main/res/layout/activity_main.xml create mode 100644 app/src/main/res/layout/drawer_main.xml create mode 100644 app/src/main/res/layout/fragment_main.xml (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 00000000..28c23503 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout/drawer_main.xml b/app/src/main/res/layout/drawer_main.xml new file mode 100644 index 00000000..9327d03f --- /dev/null +++ b/app/src/main/res/layout/drawer_main.xml @@ -0,0 +1,22 @@ + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_main.xml b/app/src/main/res/layout/fragment_main.xml new file mode 100644 index 00000000..31dbd11e --- /dev/null +++ b/app/src/main/res/layout/fragment_main.xml @@ -0,0 +1,16 @@ + + + + + -- cgit v1.2.3 From 9a35f971f917ef4141923d50deb25fa0d2f9b7dd Mon Sep 17 00:00:00 2001 From: Fup Duck Date: Tue, 12 Dec 2017 16:17:03 +0100 Subject: set background --- app/src/main/res/layout/drawer_main.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/drawer_main.xml b/app/src/main/res/layout/drawer_main.xml index 9327d03f..b2254d2a 100644 --- a/app/src/main/res/layout/drawer_main.xml +++ b/app/src/main/res/layout/drawer_main.xml @@ -3,17 +3,18 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" + android:background="@color/colorBackground" tools:context="se.leap.bitmaskclient.NavigationDrawerFragment"> -- cgit v1.2.3 From 1312c0dab26508f41246ea925176709fffeb465c Mon Sep 17 00:00:00 2001 From: Fup Duck Date: Tue, 12 Dec 2017 20:23:11 +0100 Subject: make downward compatible --- app/src/main/res/layout/drawer_main.xml | 37 ++++++++++++++++++++++++--------- 1 file changed, 27 insertions(+), 10 deletions(-) (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/drawer_main.xml b/app/src/main/res/layout/drawer_main.xml index b2254d2a..e1f7b15c 100644 --- a/app/src/main/res/layout/drawer_main.xml +++ b/app/src/main/res/layout/drawer_main.xml @@ -1,23 +1,40 @@ - + android:layout_height="wrap_content"> - + + + + + + + + android:layout_height="match_parent" /> - \ No newline at end of file -- cgit v1.2.3 From 08ec840de9657085d9a0baaab54f6b33e16a12d0 Mon Sep 17 00:00:00 2001 From: Fup Duck Date: Thu, 14 Dec 2017 21:21:22 +0100 Subject: add LogFragment --- app/src/main/res/layout/drawer_main.xml | 20 +++++++-- app/src/main/res/layout/f_log_sliders.xml | 73 +++++++++++++++++++++++++++++++ 2 files changed, 89 insertions(+), 4 deletions(-) create mode 100644 app/src/main/res/layout/f_log_sliders.xml (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/drawer_main.xml b/app/src/main/res/layout/drawer_main.xml index e1f7b15c..a2bda8b6 100644 --- a/app/src/main/res/layout/drawer_main.xml +++ b/app/src/main/res/layout/drawer_main.xml @@ -17,7 +17,7 @@ android:layout_height="match_parent" android:adjustViewBounds="false" android:cropToPadding="false" - android:scaleType="fitStart" + android:scaleType="fitXY" app:srcCompat="@drawable/ic_colorsquare" /> - + android:layout_height="wrap_content" + android:orientation="vertical"> + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/f_log_sliders.xml b/app/src/main/res/layout/f_log_sliders.xml new file mode 100644 index 00000000..4196e243 --- /dev/null +++ b/app/src/main/res/layout/f_log_sliders.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3 From 4f7200c55032d17c9bdbdb30cfd83dc757c63fe7 Mon Sep 17 00:00:00 2001 From: Fup Duck Date: Tue, 19 Dec 2017 17:37:57 +0100 Subject: adjust Fragments --- app/src/main/res/layout/f_log.xml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 app/src/main/res/layout/f_log.xml (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/f_log.xml b/app/src/main/res/layout/f_log.xml new file mode 100644 index 00000000..41c72d99 --- /dev/null +++ b/app/src/main/res/layout/f_log.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3 From bd99fc61a2e8217c41b70c6f2ff0df87e7008ea0 Mon Sep 17 00:00:00 2001 From: Fup Duck Date: Mon, 8 Jan 2018 15:49:34 +0100 Subject: seperate accountList and settingsList in drawer --- app/src/main/res/layout/activity_main.xml | 2 +- app/src/main/res/layout/drawer_main.xml | 18 ++++++++++-------- 2 files changed, 11 insertions(+), 9 deletions(-) (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index 28c23503..de06efc7 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -33,7 +33,7 @@ the container. --> + tools:context="se.leap.bitmaskclient.drawer.NavigationDrawerFragment"> - + android:layout_height="wrap_content" /> - + android:layout_height="wrap_content" + android:layout_gravity="bottom" + android:layout_alignParentBottom="true" /> - + \ No newline at end of file -- cgit v1.2.3 From 3addd20598f7fee2d41a24d64b375a2f63874457 Mon Sep 17 00:00:00 2001 From: Fup Duck Date: Tue, 9 Jan 2018 14:02:57 +0100 Subject: create ProviderDetail Activity --- app/src/main/res/layout/provider_detail_fragment.xml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/provider_detail_fragment.xml b/app/src/main/res/layout/provider_detail_fragment.xml index 3b35bae7..3db32b2c 100644 --- a/app/src/main/res/layout/provider_detail_fragment.xml +++ b/app/src/main/res/layout/provider_detail_fragment.xml @@ -38,4 +38,9 @@ android:textStyle="normal" android:textAppearance="?android:attr/textAppearanceSmall" /> + + \ No newline at end of file -- cgit v1.2.3 From 8806e6ae477e0b20806851f5f8f3c0141a63ad9d Mon Sep 17 00:00:00 2001 From: Fup Duck Date: Tue, 9 Jan 2018 19:54:57 +0100 Subject: create LoginActivity and SignUpActivity --- app/src/main/res/layout/a_login.xml | 29 +++++++++++++++++ app/src/main/res/layout/a_signup.xml | 29 +++++++++++++++++ .../main/res/layout/provider_credentials_login.xml | 36 ++++++++++++++++++++++ .../res/layout/provider_credentials_signup.xml | 24 +++++++++++++++ app/src/main/res/layout/provider_header.xml | 17 ++++++++++ 5 files changed, 135 insertions(+) create mode 100644 app/src/main/res/layout/a_login.xml create mode 100644 app/src/main/res/layout/a_signup.xml create mode 100644 app/src/main/res/layout/provider_credentials_login.xml create mode 100644 app/src/main/res/layout/provider_credentials_signup.xml create mode 100644 app/src/main/res/layout/provider_header.xml (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/a_login.xml b/app/src/main/res/layout/a_login.xml new file mode 100644 index 00000000..5ecb807c --- /dev/null +++ b/app/src/main/res/layout/a_login.xml @@ -0,0 +1,29 @@ + + + + + + + + + +