<?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="match_parent" >
|
|
<RelativeLayout
|
android:id="@+id/r2_term_check_layout"
|
android:layout_width="16dp"
|
android:layout_height="12dp" >
|
|
<ImageView
|
android:id="@+id/r2_term_check_img"
|
android:layout_width="12dp"
|
android:layout_height="12dp"
|
android:layout_alignLeft="@+id/r2_term_checked_img"
|
android:layout_alignStart="@+id/r2_term_checked_img"
|
android:scaleType="fitCenter"
|
android:src="@drawable/mr_check" />
|
|
<ImageView
|
android:id="@+id/r2_term_checked_img"
|
android:layout_width="12dp"
|
android:layout_height="12dp"
|
android:layout_alignParentEnd="true"
|
android:layout_alignParentRight="true"
|
android:layout_alignParentTop="true"
|
android:scaleType="fitCenter"
|
android:src="@drawable/mr_checked" />
|
</RelativeLayout>
|
|
<TextView
|
android:id="@+id/r2_term_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="4dp"
|
android:layout_toRightOf="@id/r2_term_check_layout"
|
android:background="@android:color/transparent"
|
android:clickable="true"
|
android:text="@string/r2_term_text"
|
android:textColor="#6a6868"
|
android:textSize="10sp" />
|
|
</RelativeLayout>
|