<?xml version="1.0" encoding="utf-8"?>
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<data>
|
|
</data>
|
|
<androidx.cardview.widget.CardView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:cardCornerRadius="10dp"
|
app:cardElevation="5dp"
|
app:cardBackgroundColor="@color/white"
|
android:layout_margin="1dp">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginHorizontal="12dp"
|
android:layout_marginVertical="5dp"
|
android:orientation="horizontal"
|
android:gravity="center"
|
>
|
|
<!-- 身份代数 -->
|
<TextView
|
android:id="@+id/tv_generation"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="1"
|
android:textSize="18sp"
|
android:textColor="#FFEBA4AA"
|
/>
|
|
<!-- 头像 -->
|
<androidx.constraintlayout.utils.widget.ImageFilterView
|
android:id="@+id/iv_avatar"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_marginStart="8dp"
|
android:layout_marginEnd="10dp"
|
android:scaleType="fitCenter"
|
app:roundPercent="1"
|
/>
|
<!-- 名字 -->
|
<TextView
|
android:id="@+id/tv_name"
|
android:layout_width="70dp"
|
android:layout_height="wrap_content"
|
android:text="林佳林佳"
|
android:textSize="16sp"
|
android:textStyle="bold"
|
android:textColor="#FFF6739F"
|
android:ellipsize="marquee"
|
android:singleLine="true"
|
android:focusable="true"
|
android:focusableInTouchMode="true"
|
android:marqueeRepeatLimit="marquee_forever"
|
/>
|
</LinearLayout>
|
|
|
</androidx.cardview.widget.CardView>
|
</layout>
|