Fixed magisk log screen lines having multiple lines

This commit is contained in:
Viktor De Pasquale
2019-06-11 17:26:23 +02:00
committed by John Wu
parent ee407472cf
commit 0ce1720516
5 changed files with 83 additions and 18 deletions

View File

@@ -15,25 +15,20 @@
</data>
<FrameLayout
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
adapter="@{viewModel.itemsAdapter}"
itemBinding="@{viewModel.itemBinding}"
items="@{item.items}"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/item_console" />
<androidx.recyclerview.widget.RecyclerView
itemBinding="@{viewModel.itemBinding}"
items="@{item.items}"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/item_console" />
</HorizontalScrollView>
</FrameLayout>
</HorizontalScrollView>
</layout>