OneMapQS/app/src/main/res/layout/fragment_sign_info.xml
squallzhjch 6921e4c0b0 增加车信提前看板显示
调整条件限速,常规限速提前看板,详细看板
调整道路名详细信息
2023-06-27 16:11:11 +08:00

35 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:clickable="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/main_sign_moreinfo_bg"
android:padding="8dp"
tools:context=".ui.fragment.signMoreInfo.SignMoreInfoFragment">
<TextView
android:id="@+id/sign_info_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/icon_main_moreinfo_text_left"
android:drawablePadding="4dp"
android:text="电子眼"
android:textColor="@color/orange" />
<ImageView
android:id="@+id/sign_info_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/sign_info_title"
android:layout_alignBottom="@id/sign_info_title"
android:layout_alignParentRight="true"
android:src="@drawable/baseline_cancel_24" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/sign_info_recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/sign_info_title"
android:layout_marginTop="5dp" />
</RelativeLayout>