make tab labels non-allCaps

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-04-28 13:52:29 +02:00
parent b304e8facb
commit 745fc65117
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
2 changed files with 8 additions and 1 deletions

View File

@ -51,7 +51,8 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/shared_items_toolbar"
app:tabGravity="fill"
app:tabMode="scrollable" />
app:tabMode="scrollable"
app:tabTextAppearance="@style/TextAppearanceTab" />
<androidx.core.widget.NestedScrollView
android:id="@+id/nestedScrollView"

View File

@ -257,4 +257,10 @@
<item name="android:textStyle">bold</item>
</style>
<style name="TextAppearanceTab" parent="TextAppearance.Design.Tab">
<item name="textAllCaps">false</item>
<item name="android:textAllCaps">false</item>
</style>
</resources>