realtimelocation/app/src/main/res/layout/item_work_log.xml
2020-12-21 15:20:31 +08:00

81 lines
3.2 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:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/shape_rectangle_white"
android:orientation="horizontal"
android:padding="10dp">
<ImageView
android:id="@+id/iv_issue_img"
android:layout_width="48dp"
android:layout_height="48dp"
tools:src="@drawable/ic_user_default" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:orientation="vertical">
<TextView
android:id="@+id/tv_log_desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="2"
android:textColor="@color/black"
android:textSize="12sp"
tools:text="万水泉镇第一分公司一片区内农垦集团路北配电箱万水泉镇第一分公司一片区内农垦集团路北配电箱万水泉镇第一分公司一片区内农垦集团路北配电箱万水泉镇第一分公司一片区内农垦集团路北配电箱,存在安全隐患" />
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_marginTop="5dp"
android:background="@drawable/shp_line_dotted"
android:layerType="software" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_log_time"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawableLeft="@drawable/ic_clock_blue"
android:drawablePadding="5dp"
android:singleLine="true"
android:textColor="#ff1189ff"
android:textSize="12sp"
tools:text="上报时间:2020-29-29 123:123:123" />
<TextView
android:id="@+id/tv_log_source"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/shp_status_blue"
android:gravity="center"
android:textColor="@color/text_blue"
android:textSize="10sp"
tools:text="日志来源" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</RelativeLayout>