69 lines
2.7 KiB
XML
69 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="27dp"
|
|
android:background="@mipmap/bg_fans_danmu"
|
|
android:gravity="center">
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:layout_height="wrap_content">
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="34dp"
|
|
android:layout_height="34dp"
|
|
android:layout_marginStart="1dp">
|
|
|
|
|
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/avatar"
|
|
android:layout_width="34dp"
|
|
android:layout_height="34dp"
|
|
android:padding="7dp"
|
|
android:src="@mipmap/beauty_jingbai"
|
|
android:scaleType="centerCrop"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:riv_border_color="@color/white"
|
|
app:riv_border_width="1dp"
|
|
app:riv_oval="true" />
|
|
<ImageView
|
|
android:layout_width="34dp"
|
|
android:layout_height="30dp"
|
|
android:background="@mipmap/icon_fans_danmu_avatar"
|
|
android:scaleType="centerInside"
|
|
app:layout_constraintBottom_toBottomOf="@+id/avatar"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:textColor="@color/color_white"
|
|
android:textSize="12sp"
|
|
android:visibility="visible"
|
|
tools:text="用戶昵稱:" />
|
|
|
|
<TextView
|
|
android:id="@+id/content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="20dp"
|
|
android:singleLine="true"
|
|
android:textColor="@color/white"
|
|
android:textSize="13sp"
|
|
android:visibility="visible"
|
|
tools:text="彈幕~" />
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout> |