<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:paddingLeft="15dp"
|
android:paddingRight="15dp">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:gravity="center_vertical">
|
|
<TextView
|
android:id="@+id/mr_game_cdk_name_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentLeft="true"
|
android:layout_centerVertical="true"
|
android:textColor="@color/black"
|
android:textSize="18sp" />
|
|
<ImageView
|
android:id="@+id/mr_cdk_item_state"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentRight="true"
|
android:layout_centerVertical="true"
|
android:background="@drawable/mr_right_icon"/>
|
</RelativeLayout>
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="30dp"
|
android:layout_marginTop="5dp"
|
android:background="#fbf0de"
|
android:gravity="center_vertical">
|
|
<TextView
|
android:id="@+id/mr_cdk_name_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="10dp"
|
android:text="激活码:"
|
android:textSize="16sp"
|
android:textColor="@color/mr_game_gifts_normal_txt_color" />
|
|
<TextView
|
android:id="@+id/mr_cdk_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_toRightOf="@id/mr_cdk_name_tv"
|
android:textSize="16sp"
|
android:textColor="@color/mr_game_gifts_normal_txt_color" />
|
|
<TextView
|
android:id="@+id/mr_cdk_copy_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentRight="true"
|
android:layout_marginRight="10dp"
|
android:textSize="16sp"
|
android:text="复制"
|
android:textColor="@color/mr_holo_orange_dark" />
|
|
</RelativeLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:weightSum="2"
|
android:orientation="horizontal">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="5dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal"
|
android:layout_weight="1">
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:background="@drawable/mr_game_cdk_start_time" />
|
|
<TextView
|
android:id="@+id/mr_cdk_start_time_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="2dp"
|
android:textColor="@color/mr_game_gifts_normal_txt_color" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="5dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal"
|
android:layout_weight="1">
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:background="@drawable/mr_game_cdk_end_time" />
|
|
<TextView
|
android:id="@+id/mr_cdk_end_time_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="2dp"
|
android:textColor="@color/mr_game_gifts_normal_txt_color" />
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|