Buttons with Icons in overview
This commit is contained in:
parent
f52726128a
commit
af7e38a6db
11
pump/medtrum/src/main/res/drawable/ic_refresh_conn.xml
Normal file
11
pump/medtrum/src/main/res/drawable/ic_refresh_conn.xml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
|
||||
<path
|
||||
android:fillColor="#42A5F5"
|
||||
android:pathData="M17.65,6.35C16.2,4.9 14.21,4 12,4c-4.42,0 -7.99,3.58 -7.99,8s3.57,8 7.99,8c3.73,0 6.84,-2.55 7.73,-6h-2.08c-0.82,2.33 -3.04,4 -5.65,4 -3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6c1.66,0 3.14,0.69 4.22,1.78L13,11h7V4l-2.35,2.35z"/>
|
||||
|
||||
</vector>
|
14
pump/medtrum/src/main/res/drawable/ic_silence_alerts.xml
Normal file
14
pump/medtrum/src/main/res/drawable/ic_silence_alerts.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="48"
|
||||
android:viewportHeight="48">
|
||||
|
||||
<path
|
||||
android:fillColor="#FF4444"
|
||||
android:pathData="M12,12 L36,36 M36,12 L12,36"
|
||||
android:strokeWidth="3"
|
||||
android:strokeLineCap="round"
|
||||
android:strokeColor="#FF4444"/>
|
||||
|
||||
</vector>
|
|
@ -3,6 +3,7 @@
|
|||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<data>
|
||||
|
||||
<variable
|
||||
name="viewmodel"
|
||||
type="info.nightscout.pump.medtrum.ui.viewmodel.MedtrumOverviewViewModel" />
|
||||
|
@ -295,7 +296,7 @@
|
|||
android:layout_marginEnd="20dp"
|
||||
android:layout_marginBottom="5dp"
|
||||
android:background="?android:attr/dividerHorizontal" />
|
||||
|
||||
|
||||
<!-- Active Alarms -->
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
|
@ -606,7 +607,7 @@
|
|||
android:background="?android:attr/dividerHorizontal" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
||||
|
@ -619,34 +620,43 @@
|
|||
android:orientation="horizontal">
|
||||
|
||||
<!-- Refresh button -->
|
||||
<Button
|
||||
<info.nightscout.core.ui.elements.SingleClickButton
|
||||
android:id="@+id/refreshButton"
|
||||
style="@style/ButtonMediumFontStyle"
|
||||
style="@style/ButtonSmallFontStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:drawableTop="@drawable/ic_refresh_conn"
|
||||
android:ellipsize="end"
|
||||
android:enabled="@{viewmodel.canDoRefresh}"
|
||||
android:maxLines="2"
|
||||
android:text="@string/refresh_label"
|
||||
app:onSafeClick="@{() -> viewmodel.onClickRefresh()}" />
|
||||
|
||||
<!-- Reset Alarms button -->
|
||||
<Button
|
||||
<info.nightscout.core.ui.elements.SingleClickButton
|
||||
android:id="@+id/resetAlarmsButton"
|
||||
style="@style/ButtonMediumFontStyle"
|
||||
style="@style/ButtonSmallFontStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/reset_alarms_label"
|
||||
android:drawableTop="@drawable/ic_silence_alerts"
|
||||
android:ellipsize="end"
|
||||
android:enabled="@{viewmodel.canDoResetAlarms}"
|
||||
android:maxLines="2"
|
||||
android:text="@string/reset_alarms_label"
|
||||
app:onSafeClick="@{() -> viewmodel.onClickResetAlarms()}" />
|
||||
|
||||
<!-- Change Patch button -->
|
||||
<Button
|
||||
<info.nightscout.core.ui.elements.SingleClickButton
|
||||
android:id="@+id/changePatchButton"
|
||||
style="@style/ButtonMediumFontStyle"
|
||||
style="@style/ButtonSmallFontStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:drawableTop="@drawable/ic_actions_refill"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="2"
|
||||
android:text="@string/change_patch_label"
|
||||
app:onSafeClick="@{() -> viewmodel.onClickChangePatch()}" />
|
||||
|
||||
|
|
Loading…
Reference in a new issue