| | |
| | | <androidx.cardview.widget.CardView |
| | | android:id="@+id/cardView" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="wrap_content" |
| | | android:layout_height="40dp" |
| | | android:layout_margin="@dimen/dp_2" |
| | | app:cardCornerRadius="@dimen/dp_10" |
| | | app:cardBackgroundColor="@color/color_card_pink" |
| | | tools:layout_height="wrap_content" |
| | | > |
| | | <LinearLayout |
| | | android:layout_width="match_parent" |
| | | android:layout_height="40dp" |
| | | android:layout_height="wrap_content" |
| | | android:orientation="vertical" |
| | | > |
| | | <RelativeLayout |
| | |
| | | android:textColor="@color/black" |
| | | android:text="@{bean.title}" |
| | | android:layout_weight="1" |
| | | android:textStyle="bold" |
| | | /> |
| | | <TextView |
| | | android:layout_width="wrap_content" |
| | |
| | | android:textSize="@dimen/sp_16" |
| | | android:textColor="@color/black" |
| | | android:text="@{bean.createTime}" |
| | | android:textStyle="bold" |
| | | android:layout_marginEnd="24dp" |
| | | android:layout_alignParentEnd="true" |
| | | android:layout_centerVertical="true" |
| | |
| | | android:text="序号:" |
| | | android:textColor="@color/black" |
| | | android:textSize="@dimen/sp_12" |
| | | android:textStyle="bold" |
| | | |
| | | /> |
| | | <TextView |
| | | android:layout_width="wrap_content" |
| | |
| | | android:text="@{String.valueOf(bean.id)}" |
| | | android:textColor="@color/black" |
| | | android:textSize="@dimen/sp_12" |
| | | android:textStyle="bold" |
| | | |
| | | /> |
| | | </LinearLayout> |
| | | <LinearLayout |
| | |
| | | android:text="人物:" |
| | | android:textColor="@color/black" |
| | | android:textSize="@dimen/sp_12" |
| | | android:textStyle="bold" |
| | | |
| | | /> |
| | | <TextView |
| | | android:layout_width="wrap_content" |
| | |
| | | android:text="@{bean.people}" |
| | | android:textColor="@color/black" |
| | | android:textSize="@dimen/sp_12" |
| | | android:textStyle="bold" |
| | | |
| | | /> |
| | | </LinearLayout> |
| | | <LinearLayout |
| | |
| | | android:text="备注:" |
| | | android:textColor="@color/black" |
| | | android:textSize="@dimen/sp_12" |
| | | android:textStyle="bold" |
| | | |
| | | /> |
| | | <TextView |
| | | android:layout_width="wrap_content" |
| | |
| | | android:text="@{bean.remark}" |
| | | android:textColor="@color/black" |
| | | android:textSize="@dimen/sp_12" |
| | | android:textStyle="bold" |
| | | |
| | | /> |
| | | </LinearLayout> |
| | | <TextView |
| | |
| | | android:text="电子文件:" |
| | | android:textColor="@color/black" |
| | | android:textSize="@dimen/sp_12" |
| | | android:textStyle="bold" |
| | | |
| | | /> |
| | | <LinearLayout |
| | | android:layout_width="match_parent" |
| | |
| | | android:text="修改" |
| | | android:textColor="@color/black" |
| | | android:textSize="@dimen/sp_14" |
| | | android:textStyle="bold" |
| | | |
| | | android:layout_marginStart="@dimen/dp_4" |
| | | /> |
| | | </LinearLayout> |
| | |
| | | android:text="删除" |
| | | android:textColor="#FFE86F72" |
| | | android:textSize="@dimen/sp_14" |
| | | android:textStyle="bold" |
| | | |
| | | android:layout_marginStart="@dimen/dp_4" |
| | | /> |
| | | </LinearLayout> |