From 86619a6ebb4508cd75584f12db69b2c1ed22ef2d Mon Sep 17 00:00:00 2001 From: cyberta Date: Wed, 23 Nov 2022 11:38:34 +0100 Subject: split eip fragment xml per normal/custom flavor --- app/src/main/res/layout/f_eip.xml | 146 ------------------------------ app/src/main/res/layout/f_test_layout.xml | 8 ++ 2 files changed, 8 insertions(+), 146 deletions(-) delete mode 100644 app/src/main/res/layout/f_eip.xml create mode 100644 app/src/main/res/layout/f_test_layout.xml (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/f_eip.xml b/app/src/main/res/layout/f_eip.xml deleted file mode 100644 index 9a823b65..00000000 --- a/app/src/main/res/layout/f_eip.xml +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/f_test_layout.xml b/app/src/main/res/layout/f_test_layout.xml new file mode 100644 index 00000000..6ec91259 --- /dev/null +++ b/app/src/main/res/layout/f_test_layout.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file -- cgit v1.2.3 From 0cf31d76c9f48cc73446b3fde478a46cd29c7594 Mon Sep 17 00:00:00 2001 From: cyberta Date: Tue, 29 Nov 2022 00:58:36 +0100 Subject: split EipFragment and MainButon into normal and custom flavor, implement new on-off button design for Bitmask --- app/src/main/res/layout/v_main_button.xml | 136 ------------------------------ 1 file changed, 136 deletions(-) delete mode 100644 app/src/main/res/layout/v_main_button.xml (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/v_main_button.xml b/app/src/main/res/layout/v_main_button.xml deleted file mode 100644 index 741fc88f..00000000 --- a/app/src/main/res/layout/v_main_button.xml +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file -- cgit v1.2.3 From c2f6bc4e2098265fb1fc8f671dbdecbb5917c6fc Mon Sep 17 00:00:00 2001 From: cyberta Date: Tue, 29 Nov 2022 14:01:05 +0100 Subject: new EipFragment layout for Bitmask - portrait --- app/src/main/res/layout/v_location_button.xml | 33 +++++++++++++-------------- 1 file changed, 16 insertions(+), 17 deletions(-) (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/v_location_button.xml b/app/src/main/res/layout/v_location_button.xml index d304d429..44a4c67e 100644 --- a/app/src/main/res/layout/v_location_button.xml +++ b/app/src/main/res/layout/v_location_button.xml @@ -39,31 +39,30 @@ android:visibility="gone" tools:visibility="visible" /> + + app:autoSizeMaxTextSize="24sp" + app:autoSizeMinTextSize="15sp" + app:autoSizeTextType="uniform" + tools:text="Seattle along message" /> Date: Tue, 29 Nov 2022 23:49:39 +0100 Subject: fix missing location button view bindings for custom branded builds --- app/src/main/res/layout/v_location_button.xml | 1 - 1 file changed, 1 deletion(-) (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/v_location_button.xml b/app/src/main/res/layout/v_location_button.xml index 44a4c67e..611ac3c4 100644 --- a/app/src/main/res/layout/v_location_button.xml +++ b/app/src/main/res/layout/v_location_button.xml @@ -8,7 +8,6 @@ android:padding="@dimen/stdpadding" android:background="@drawable/cust_button_primary_rect" android:layout_height="match_parent" - tools:viewBindingIgnore="true" > Date: Wed, 30 Nov 2022 01:37:33 +0100 Subject: rename drawables and colors according to the state they're representing --- app/src/main/res/layout/v_location_button.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/v_location_button.xml b/app/src/main/res/layout/v_location_button.xml index 611ac3c4..aa4af10c 100644 --- a/app/src/main/res/layout/v_location_button.xml +++ b/app/src/main/res/layout/v_location_button.xml @@ -6,7 +6,7 @@ android:layout_width="match_parent" android:layout_gravity="center_vertical" android:padding="@dimen/stdpadding" - android:background="@drawable/cust_button_primary_rect" + android:background="@drawable/cust_button_light_rect" android:layout_height="match_parent" > -- cgit v1.2.3