<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<ImageView
|
android:id="@+id/imageView"
|
android:layout_width="13dp"
|
android:layout_height="10dp"
|
android:layout_marginStart="15dp"
|
android:background="@drawable/function_family_root_net"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="家根网"
|
android:textColor="@color/black"
|
android:textSize="10sp"
|
android:layout_marginStart="15dp"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toEndOf="@+id/imageView"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
<ImageView
|
android:id="@+id/imageView2"
|
android:layout_width="15dp"
|
android:layout_height="15dp"
|
android:background="@drawable/ic_delete"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_marginEnd="18dp"
|
/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|