40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<data>
|
|
<import type="android.view.View" />
|
|
<variable
|
|
name="bean"
|
|
type="com.lukouguoji.module_base.bean.AssemblePositionBean" />
|
|
<variable
|
|
name="position"
|
|
type="Integer" />
|
|
</data>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:paddingVertical="12dp"
|
|
android:paddingHorizontal="8dp"
|
|
android:background="@{bean.isSelected ? @drawable/bg_green_light : @drawable/bg_white}">
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@{bean.positionName}"
|
|
android:textColor="@{bean.isSelected ? @color/colorPrimary : @color/text_normal}"
|
|
android:textSize="14sp"
|
|
android:textStyle="normal" />
|
|
|
|
<!-- 选中图标 -->
|
|
<ImageView
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/ic_check_green"
|
|
android:visibility="@{bean.isSelected ? View.VISIBLE : View.GONE}" />
|
|
</LinearLayout>
|
|
</layout>
|