Files
yuliao_and/app/src/main/res/layout/layout_common_search.xml
2025-08-08 15:09:22 +08:00

45 lines
2.0 KiB
XML

<?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"
android:background="@drawable/cornor_f4f4f4_6dp">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/ic_common_search"
android:layout_width="@dimen/dp_16"
android:layout_height="@dimen/dp_16"
android:layout_marginStart="@dimen/dp_15"
android:src="@mipmap/ic_chat_search1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_common_searchcontent"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginStart="@dimen/dp_5"
android:layout_marginEnd="@dimen/dp_15"
android:background="@android:color/transparent"
android:gravity="center_vertical"
android:hint="@string/addfriend_search_text"
android:textColorHint="#2C2C2C"
android:textSize="@dimen/sp_14"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@+id/ic_common_search"
app:layout_constraintRight_toLeftOf="@+id/iv_commonsearch_scan"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv_commonsearch_scan"
android:layout_width="@dimen/dp_30"
android:layout_height="match_parent"
android:scaleType="centerInside"
android:layout_marginEnd="@dimen/dp_5"
android:src="@mipmap/ic_chat_scan"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>