#
whycq
2025-02-07 dd170bf880918ce00a1df68e8a3c621ada9b5820
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".LogActivity">
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true">
        <TextView
            android:id="@+id/log_text_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="12sp"
            android:textColor="#FFFFFF"
            android:background="#000000"
            android:focusable="true"
            android:singleLine="false"
            android:focusableInTouchMode="true"
            android:breakStrategy="high_quality"
            android:hyphenationFrequency="normal"
            android:scrollbars="vertical" />
    </ScrollView>
</LinearLayout>