wjc
2024-11-27 22c83310cbc4b04615be42d51645b47eff87cb7d
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/text_FFFFFFFF">
 
    <include
        android:id="@+id/toolbar_top_exception_rl"
        layout="@layout/toolbar_top_view_44" />
 
    <!--    <RelativeLayout-->
    <!--        android:id="@+id/loading_header_el"-->
    <!--        android:layout_width="match_parent"-->
    <!--        android:layout_height="@dimen/dp_16"-->
    <!--        app:layout_constraintEnd_toEndOf="parent"-->
    <!--        app:layout_constraintStart_toStartOf="parent"-->
    <!--        app:layout_constraintTop_toBottomOf="@+id/toolbar_top_exception_rl">-->
 
    <!--        <TextView-->
    <!--            android:id="@+id/loading_top_title_tv"-->
    <!--            android:layout_width="wrap_content"-->
    <!--            android:layout_height="@dimen/dp_16"-->
    <!--            android:layout_marginStart="@dimen/dp_5"-->
    <!--            android:layout_marginBottom="@dimen/dp_5"-->
    <!--            android:text="截图反馈"-->
    <!--            android:textAlignment="textStart"-->
    <!--            android:textColor="@color/text_D34545"-->
    <!--            android:textIsSelectable="true" />-->
 
    <!--    </RelativeLayout>-->
 
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/toolbar_top_exception_rl">
 
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="0dp">
            <!--显示异常堆栈信息-->
            <TextView
                android:id="@+id/loading_exception_tv"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginStart="@dimen/dp_5"
                android:layout_marginBottom="@dimen/dp_5"
                android:gravity="start|center"
                android:text="显示异常堆栈信息"
                android:textAlignment="textStart"
                android:textColor="@color/text_030D1C"
                android:textIsSelectable="true" />
 
        </RelativeLayout>
 
    </ScrollView>
 
 
</androidx.constraintlayout.widget.ConstraintLayout>