<?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>
|