diff options
| author | Jules Aguillon | 2024-12-15 11:57:01 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2024-12-15 11:57:01 +0100 |
| commit | f9c92007db136eefd407198054500cc10ee3cc4b (patch) | |
| tree | 4ca49c200fee96ea8e3d6fea274997e36989bd35 /res/values/styles.xml | |
| parent | 908bb93f82611350411b5bb9790562f9f10a4b79 (diff) | |
| download | unexpected-keyboard-f9c92007db136eefd407198054500cc10ee3cc4b.tar.gz unexpected-keyboard-f9c92007db136eefd407198054500cc10ee3cc4b.zip | |
launcher: Show output of animated gesture
Diffstat (limited to 'res/values/styles.xml')
| -rw-r--r-- | res/values/styles.xml | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml index 56edbde..bf4773d 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -57,11 +57,27 @@ <item name="android:layout_gravity">center</item> </style> <style name="anim"> - <item name="android:layout_width">100dp</item> + <item name="android:adjustViewBounds">true</item> + <item name="android:layout_height">120dp</item> + <item name="android:layout_weight">1</item> + <item name="android:layout_width">wrap_content</item> + </style> + <style name="anim_text"> + <item name="android:layout_gravity">center</item> <item name="android:layout_height">wrap_content</item> - <item name="android:layout_marginVertical">16dp</item> + <item name="android:layout_marginHorizontal">20dp</item> + <item name="android:layout_weight">1</item> + <item name="android:layout_width">wrap_content</item> + <item name="android:textAlignment">center</item> + <item name="android:textSize">18dp</item> + <item name="android:textStyle">bold</item> + </style> + <style name="anim_box"> <item name="android:layout_gravity">center</item> - <item name="android:adjustViewBounds">true</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:layout_marginVertical">16dp</item> + <item name="android:layout_width">wrap_content</item> + <item name="android:orientation">horizontal</item> </style> <style name="appTheme" parent="@android:style/Theme.DeviceDefault.DayNight"/> </resources> |
