| 123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.appcompat.widget.LinearLayoutCompat 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:orientation="vertical">
- <androidx.appcompat.widget.AppCompatButton
- android:id="@+id/tv_immediate_report"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingHorizontal="12dp"
- android:paddingVertical="8dp"
- android:text="立即测试"
- android:textSize="16sp"
- android:gravity="center"
- tools:ignore="HardcodedText" />
- <androidx.appcompat.widget.AppCompatButton
- android:id="@+id/tv_delay_report"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingHorizontal="12dp"
- android:paddingVertical="8dp"
- android:text="延迟测试"
- android:textSize="16sp"
- android:gravity="center"
- tools:ignore="HardcodedText" />
- </androidx.appcompat.widget.LinearLayoutCompat>
|