<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="90dp"
|
android:layout_height="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:background="@drawable/bg_green_line">
|
<TextView
|
android:id="@+id/tv_comment"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="评论"
|
app:layout_constraintTop_toTopOf="parent"
|
android:paddingVertical="13dp"
|
android:textSize="15sp"
|
android:background="@color/colorPrimary"
|
android:singleLine="true"
|
android:textColor="@color/white"
|
android:gravity="center" />
|
|
<TextView
|
android:id="@+id/tv_report"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="举报"
|
app:layout_constraintTop_toBottomOf="@id/tv_comment"
|
android:paddingVertical="13dp"
|
android:textSize="15sp"
|
android:textColor="@color/colorPrimary"
|
android:gravity="center"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|