mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-01 14:05:29 +00:00
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView android:id="@+id/svLog"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="?attr/actionBarSize">
|
|
|
|
<HorizontalScrollView
|
|
android:id="@+id/hsvLog"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:ignore="ScrollViewSize">
|
|
|
|
<TextView
|
|
android:id="@+id/txtLog"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="monospace"
|
|
android:padding="8dp"
|
|
android:textIsSelectable="true"
|
|
android:textSize="10sp" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</HorizontalScrollView>
|
|
|
|
</ScrollView> |