Commit 73203a55 authored by topjohnwu's avatar topjohnwu

Use fancy NestedScrollView for Magisk logs

parent 397f7326
...@@ -14,10 +14,12 @@ ...@@ -14,10 +14,12 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">
<ScrollView <androidx.core.widget.NestedScrollView
gone="@{viewModel.consoleText.empty}" gone="@{viewModel.consoleText.empty}"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent"
android:clipToPadding="false"
android:fillViewport="true">
<HorizontalScrollView <HorizontalScrollView
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -36,7 +38,7 @@ ...@@ -36,7 +38,7 @@
</HorizontalScrollView> </HorizontalScrollView>
</ScrollView> </androidx.core.widget.NestedScrollView>
<FrameLayout <FrameLayout
gone="@{!viewModel.consoleText.empty}" gone="@{!viewModel.consoleText.empty}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment