34 lines
989 B
XML
34 lines
989 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="54dp"
|
|
android:background="@color/white"
|
|
android:paddingLeft="15dp"
|
|
android:paddingRight="15dp"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/img"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:layout_centerVertical="true"
|
|
android:src="@mipmap/icon_cash_radio_1"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_toRightOf="@id/img"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="16sp"
|
|
/>
|
|
|
|
<View
|
|
style="@style/line2"
|
|
android:layout_alignParentBottom="true"
|
|
/>
|
|
</RelativeLayout> |