From 5397e103492099bb3fdece2b5de752605570ec2f Mon Sep 17 00:00:00 2001 From: mac <user@users-MacBook-Pro.local> Date: 星期三, 15 五月 2024 15:37:09 +0800 Subject: [PATCH] Merge branch 'wjc_new' into wxw_new --- app/src/main/res/layout/item_search_house.xml | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/app/src/main/res/layout/item_search_house.xml b/app/src/main/res/layout/item_search_house.xml new file mode 100644 index 0000000..0b1b47b --- /dev/null +++ b/app/src/main/res/layout/item_search_house.xml @@ -0,0 +1,39 @@ +<?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="@dimen/dp_75"> + + <ImageView + android:id="@+id/power_station_search_iv" + android:layout_width="@dimen/dp_18" + android:layout_height="@dimen/dp_18" + android:layout_marginStart="@dimen/dp_16" + android:src="@drawable/search_path" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <TextView + android:id="@+id/message_name_tv" + android:layout_width="wrap_content" + android:layout_height="@dimen/dp_23" + android:layout_marginStart="@dimen/dp_23" + android:ellipsize="end" + android:singleLine="true" + android:textColor="@color/text_90000000" + android:textSize="@dimen/text_16" + app:layout_constraintStart_toEndOf="@+id/power_station_search_iv" + app:layout_constraintTop_toTopOf="parent" /> + + <TextView + android:id="@+id/power_station_location_tv" + android:layout_width="wrap_content" + android:layout_height="@dimen/dp_17" + android:layout_marginTop="@dimen/dp_7" + android:textColor="@color/text_40000000" + android:textSize="@dimen/text_12" + app:layout_constraintStart_toStartOf="@+id/message_name_tv" + app:layout_constraintTop_toBottomOf="@+id/message_name_tv" /> + + +</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file -- Gitblit v1.8.0