riku
2025-10-31 1897c4ad5fa73b3f0a36e1aa0e1e9000302a6ace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:paddingTop="@dimen/dimen8"
    android:paddingBottom="@dimen/dimen8"
    android:paddingStart="@dimen/dimen8"
    android:paddingEnd="@dimen/dimen8">
 
    <TextView
        android:id="@+id/text_problem_type"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="问题类型"
        android:gravity="center"
        android:textColor="@drawable/selector_text_color_2"
        android:background="@drawable/selector_bg_blue_or_white"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"/>
</android.support.constraint.ConstraintLayout>