Fix FontPreviewFragment cannot be scrolled.

This commit is contained in:
Alex Ning 2020-09-01 12:07:50 +08:00
parent ccfb00ce3d
commit ff49660cf7

View File

@ -1,11 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".Settings.FontPreviewFragment"> tools:context=".Settings.FontPreviewFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView <TextView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
@ -174,3 +178,5 @@
android:fontFamily="@font/sriracha_regular" /> android:fontFamily="@font/sriracha_regular" />
</LinearLayout> </LinearLayout>
</androidx.core.widget.NestedScrollView>