chore: wizard check to toggle button fix alligment

This commit is contained in:
Andries Smit 2022-03-10 11:44:58 +01:00
parent 498728bebd
commit ac5e4a8193

View file

@ -242,77 +242,67 @@
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:layout_width="wrap_content" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="45dp"
android:layout_gravity="center|center_vertical" android:paddingHorizontal="10dp">
android:layout_marginTop="10dp"
android:background="@android:color/transparent"
android:orientation="horizontal"
android:padding="0dp">
<CheckBox <ToggleButton
android:id="@+id/bg_checkbox_icon" android:id="@+id/bg_checkbox_icon"
android:layout_width="wrap_content" style="?android:attr/borderlessButtonStyle"
android:layout_height="wrap_content" android:layout_width="0dp"
android:layout_marginLeft="15dp" android:layout_height="match_parent"
android:layout_marginRight="15dp" android:layout_weight="1"
android:button="@android:color/transparent"
android:checked="true" android:checked="true"
android:contentDescription="@string/treatments_wizard_bg_label" android:contentDescription="@string/treatments_wizard_bg_label"
android:drawableStart="@drawable/checkbox_bg_icon" android:drawableTop="@drawable/checkbox_bg_icon"
android:scaleX="1.4" android:scaleX="1.4"
android:scaleY="1.4" /> android:scaleY="1.4" />
<CheckBox <ToggleButton
android:id="@+id/tt_checkbox_icon" android:id="@+id/tt_checkbox_icon"
android:layout_width="wrap_content" style="?android:attr/borderlessButtonStyle"
android:layout_height="wrap_content" android:layout_width="0dp"
android:layout_marginLeft="15dp" android:layout_height="match_parent"
android:layout_marginRight="15dp" android:layout_weight="1"
android:button="@android:color/transparent"
android:checked="true" android:checked="true"
android:contentDescription="@string/treatments_wizard_tt_label" android:contentDescription="@string/treatments_wizard_tt_label"
android:drawableStart="@drawable/checkbox_tt_icon" android:drawableTop="@drawable/checkbox_tt_icon"
android:scaleX="1.6" android:scaleX="1.6"
android:scaleY="1.6" android:scaleY="1.6" />
android:visibility="gone" />
<CheckBox <ToggleButton
android:id="@+id/trend_checkbox_icon" android:id="@+id/trend_checkbox_icon"
android:layout_width="wrap_content" style="?android:attr/borderlessButtonStyle"
android:layout_height="wrap_content" android:layout_width="0dp"
android:layout_marginLeft="15dp" android:layout_height="match_parent"
android:layout_marginRight="15dp" android:layout_weight="1"
android:button="@android:color/transparent"
android:checked="true" android:checked="true"
android:contentDescription="@string/bg_trend_label" android:contentDescription="@string/bg_trend_label"
android:drawableStart="@drawable/checkbox_trend_icon" android:drawableTop="@drawable/checkbox_trend_icon"
android:scaleX="1.4" android:scaleX="1.4"
android:scaleY="1.4" /> android:scaleY="1.4" />
<CheckBox <ToggleButton
android:id="@+id/iob_checkbox_icon" android:id="@+id/iob_checkbox_icon"
android:layout_width="wrap_content" style="?android:attr/borderlessButtonStyle"
android:layout_height="wrap_content" android:layout_width="0dp"
android:layout_marginLeft="15dp" android:layout_height="match_parent"
android:layout_marginRight="15dp" android:layout_weight="1"
android:button="@android:color/transparent"
android:checked="true" android:checked="true"
android:contentDescription="@string/iob" android:contentDescription="@string/iob"
android:drawableStart="@drawable/checkbox_iob_icon" android:drawableTop="@drawable/checkbox_iob_icon"
android:scaleX="1.4" android:scaleX="1.4"
android:scaleY="1.4" /> android:scaleY="1.4" />
<CheckBox <ToggleButton
android:id="@+id/cob_checkbox_icon" android:id="@+id/cob_checkbox_icon"
android:layout_width="wrap_content" style="?android:attr/borderlessButtonStyle"
android:layout_height="wrap_content" android:layout_width="0dp"
android:layout_marginLeft="15dp" android:layout_height="match_parent"
android:layout_marginRight="15dp" android:layout_weight="1"
android:button="@android:color/transparent"
android:checked="true" android:checked="true"
android:contentDescription="@string/treatments_wizard_cob_label" android:contentDescription="@string/treatments_wizard_cob_label"
android:drawableStart="@drawable/checkbox_cob_icon" android:drawableTop="@drawable/checkbox_cob_icon"
android:scaleX="1.6" android:scaleX="1.6"
android:scaleY="1.6" /> android:scaleY="1.6" />