diff options
author | Alex Ning <chineseperson5@gmail.com> | 2020-04-05 08:47:39 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2020-04-05 08:47:39 +0000 |
commit | 74c06151cdd4fad033002c38177e9829cad7e9be (patch) | |
tree | 6a320bda3c2b1e4481a735af5ba33672762cfcb4 /app/src/main/res/layout/item_theme_name.xml | |
parent | 7a429f902dc0e9519382032cca2da97816877b0d (diff) | |
download | infinity-for-reddit-74c06151cdd4fad033002c38177e9829cad7e9be.tar infinity-for-reddit-74c06151cdd4fad033002c38177e9829cad7e9be.tar.gz infinity-for-reddit-74c06151cdd4fad033002c38177e9829cad7e9be.tar.bz2 infinity-for-reddit-74c06151cdd4fad033002c38177e9829cad7e9be.tar.lz infinity-for-reddit-74c06151cdd4fad033002c38177e9829cad7e9be.tar.xz infinity-for-reddit-74c06151cdd4fad033002c38177e9829cad7e9be.tar.zst infinity-for-reddit-74c06151cdd4fad033002c38177e9829cad7e9be.zip |
Fix font size issues.
Diffstat (limited to 'app/src/main/res/layout/item_theme_name.xml')
-rw-r--r-- | app/src/main/res/layout/item_theme_name.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/src/main/res/layout/item_theme_name.xml b/app/src/main/res/layout/item_theme_name.xml index 84c49d7c..c08f517d 100644 --- a/app/src/main/res/layout/item_theme_name.xml +++ b/app/src/main/res/layout/item_theme_name.xml @@ -11,7 +11,8 @@ android:id="@+id/theme_name_text_view_item_theme_name" android:layout_width="match_parent" android:layout_height="wrap_content" - android:textColor="?attr/primaryTextColor" /> + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_16" /> <TextView android:id="@+id/description_text_view_item_theme_name" @@ -19,6 +20,7 @@ android:layout_height="wrap_content" android:layout_marginTop="4dp" android:text="@string/theme_name_description" - android:textColor="?attr/secondaryTextColor" /> + android:textColor="?attr/secondaryTextColor" + android:textSize="?attr/font_default" /> </LinearLayout>
\ No newline at end of file |