2017-01-27 03:38:53 +08:00
|
|
|
<?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"
|
2018-08-30 00:52:02 -04:00
|
|
|
android:layout_height="wrap_content">
|
2017-01-27 03:38:53 +08:00
|
|
|
|
|
|
|
<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"
|
2017-04-24 21:52:23 +08:00
|
|
|
android:fontFamily="monospace"
|
2017-01-27 03:38:53 +08:00
|
|
|
android:padding="8dp"
|
2017-04-24 21:52:23 +08:00
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="10sp" />
|
2017-01-27 03:38:53 +08:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</HorizontalScrollView>
|
|
|
|
|
|
|
|
</ScrollView>
|