Magisk/app/src/main/res/layout/fragment_log.xml

36 lines
1.2 KiB
XML
Raw Normal View History

2016-08-21 15:21:37 +00:00
<?xml version="1.0" encoding="utf-8"?>
2016-08-23 10:39:36 +00:00
<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">
2016-08-21 15:21:37 +00:00
2016-08-23 10:39:36 +00:00
<HorizontalScrollView
android:id="@+id/hsvLog"
2016-08-21 15:21:37 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content">
2016-08-23 10:39:36 +00:00
<LinearLayout
2016-08-21 15:21:37 +00:00
android:layout_width="match_parent"
2016-08-23 10:39:36 +00:00
android:layout_height="match_parent"
tools:ignore="ScrollViewSize">
2016-08-21 15:21:37 +00:00
2016-08-23 10:39:36 +00:00
<TextView
android:id="@+id/txtLog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:textIsSelectable="true"/>
2016-08-21 15:21:37 +00:00
2016-08-23 10:39:36 +00:00
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
2016-08-21 15:21:37 +00:00
2016-08-23 10:39:36 +00:00
</LinearLayout>
2016-08-21 15:21:37 +00:00
2016-08-23 10:39:36 +00:00
</HorizontalScrollView>
2016-08-21 15:21:37 +00:00
2016-08-23 10:39:36 +00:00
</ScrollView>