Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/wear-os-hex-editor-watchface.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-03-15 03:50:42 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-03-15 03:50:42 +0300
commit33c93ce83685fbdf9202b59ef7a87571d6321147 (patch)
treeb625c62dbd204981eef0b05bd1ad2c318c11587b
parent7fb113a0e4506003defe44b68eb0e4f17a15497c (diff)
Font size
-rw-r--r--app/src/main/res/layout/menu_item.xml10
1 files changed, 4 insertions, 6 deletions
diff --git a/app/src/main/res/layout/menu_item.xml b/app/src/main/res/layout/menu_item.xml
index a03d0e1..84e191e 100644
--- a/app/src/main/res/layout/menu_item.xml
+++ b/app/src/main/res/layout/menu_item.xml
@@ -33,26 +33,24 @@
android:id="@+id/textViewSettingKey"
android:layout_width="0dp"
android:layout_height="0dp"
- android:layout_marginStart="16dp"
android:gravity="center_vertical|left"
android:text="key"
- android:textSize="15dp"
+ android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/guideline"
- app:layout_constraintStart_toStartOf="@+id/imageViewLeft"
+ app:layout_constraintStart_toEndOf="@+id/imageViewLeft"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/textViewSettingValue"
android:layout_width="60dp"
android:layout_height="0dp"
- android:layout_marginEnd="8dp"
android:gravity="center"
android:paddingLeft="8dp"
android:text="value"
android:textSize="12sp"
app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="@+id/imageViewRight"
+ app:layout_constraintEnd_toStartOf="@+id/imageViewRight"
app:layout_constraintStart_toEndOf="@+id/guideline"
app:layout_constraintTop_toTopOf="parent" />
@@ -92,7 +90,7 @@
android:layout_height="0dp"
android:gravity="center"
android:text="Explanation"
- android:textSize="25dp"
+ android:textSize="25sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"