| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="utf-8"?>
- <layout xmlns:android="http://schemas.android.com/apk/res/android">
- <RelativeLayout
- android:id="@+id/rl"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="10dp"
- android:background="@drawable/shape_withe_5"
- android:layout_marginBottom="12dp"
- android:paddingBottom="10dp">
- <ImageView
- android:id="@+id/iv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/monitoring_icon"
- android:layout_centerVertical="true"
- android:layout_marginLeft="20dp"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_toRightOf="@id/iv"
- android:layout_marginLeft="10dp"
- android:text="@{item}"
- android:paddingLeft="15dp"
- android:paddingTop="5dp"
- android:paddingBottom="5dp"
- android:textSize="14sp"
- android:textStyle="bold"
- android:textColor="#555555"
- android:letterSpacing="0.1"
- android:background="@drawable/shape_light_blue_3"
- android:layout_marginRight="50dp"/>
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_alignParentRight="true"
- android:layout_marginRight="20dp"
- android:src="@drawable/right_arrow"/>
- </RelativeLayout>
-
- <data>
- <variable
- name="item"
- type="String" />
- </data>
- </layout>
|