| <?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" | 
|     android:background="@android:color/transparent" > | 
|   | 
|     <LinearLayout | 
|         android:layout_width="296dp" | 
|         android:layout_height="560dp" | 
|         android:layout_centerInParent="true" | 
|         android:background="@drawable/mr_container_bg" | 
|         android:orientation="vertical" | 
|         android:paddingLeft="16dp" | 
|         android:paddingRight="16dp" | 
|         android:paddingTop="24dp" > | 
|   | 
|         <TextView | 
|             android:id="@+id/r2_term_title" | 
|             android:layout_width="wrap_content" | 
|             android:layout_height="wrap_content" | 
|             android:layout_gravity="center_horizontal" | 
|             android:textColor="@color/term_color" | 
|             android:textSize="16sp" | 
|             android:textStyle="bold" /> | 
|   | 
|         <View | 
|             android:layout_width="match_parent" | 
|             android:layout_height="1dp" | 
|             android:layout_marginTop="8dp" | 
|             android:background="@android:color/darker_gray" /> | 
|   | 
|         <WebView | 
|             android:id="@+id/r2_term_content_wv" | 
|             android:layout_width="match_parent" | 
|             android:layout_height="460dp" /> | 
|   | 
|         <View | 
|             android:layout_width="match_parent" | 
|             android:layout_height="1dp" | 
|             android:background="@android:color/darker_gray" /> | 
|   | 
|         <RelativeLayout | 
|             android:layout_width="match_parent" | 
|             android:layout_height="match_parent" > | 
|   | 
|             <Button | 
|                 android:id="@+id/r2_term_confirm_btn" | 
|                 android:layout_width="72dp" | 
|                 android:layout_height="24dp" | 
|                 android:layout_centerInParent="true" | 
|                 android:background="@color/term_color" | 
|                 android:text="@string/r2_term_confirm" | 
|                 android:textColor="#FFFFFF" | 
|                 android:textSize="16sp" /> | 
|         </RelativeLayout> | 
|     </LinearLayout> | 
|   | 
| </RelativeLayout> |