<?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="wrap_content"
|
android:background="@drawable/shap_stroke_bottom"
|
android:descendantFocusability="blocksDescendants"
|
>
|
|
<ImageView
|
android:id="@+id/img_selectedStatus"
|
android:layout_height="wrap_content"
|
android:layout_width="wrap_content"
|
android:focusable="false"
|
android:visibility="gone"
|
android:src="@drawable/icon_sel_blue" />
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="@dimen/dimen8"
|
android:paddingLeft="@dimen/fab_margin"
|
android:paddingRight="@dimen/fab_margin"
|
android:layout_alignParentTop="true"
|
android:layout_alignParentStart="true">
|
|
<TextView
|
android:id="@+id/tv_no"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerVertical="true"
|
android:padding="@dimen/dimen4" />
|
|
<TextView
|
android:id="@+id/tv_scenseName"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerVertical="true"
|
android:layout_margin="@dimen/dimen4"
|
android:layout_marginLeft="@dimen/fab_margin"
|
android:layout_toLeftOf="@+id/ll_monitorNum"
|
android:layout_toRightOf="@+id/tv_no"
|
android:textColor="@color/colorPrimary"
|
android:layout_marginEnd="@dimen/dimen8"
|
android:textSize="@dimen/textSize_14"
|
android:typeface="monospace" />
|
|
<LinearLayout
|
android:id="@+id/ll_monitorNum"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentRight="true"
|
android:layout_centerVertical="true"
|
android:gravity="center_vertical"
|
android:orientation="horizontal"
|
>
|
|
<ImageView
|
android:id="@+id/img_minus"
|
android:layout_height="wrap_content"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:focusable="false"
|
android:padding="@dimen/dimen4"
|
android:src="@drawable/ic_minus" />
|
|
<TextView
|
android:id="@+id/tv_monitorNum"
|
android:layout_height="wrap_content"
|
android:layout_width="0dp"
|
android:layout_gravity="center"
|
android:gravity="center"
|
android:paddingRight="@dimen/fab_margin"
|
android:layout_weight="1"
|
/>
|
|
<ImageView
|
android:id="@+id/img_plus"
|
android:layout_height="wrap_content"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:focusable="false"
|
android:padding="@dimen/dimen4"
|
android:src="@drawable/ic_plus"
|
android:contentDescription="@string/app_name"
|
/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|