123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/tysdkn_center_frag_bg2"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="246dp"
- android:layout_height="90dp"
- android:background="@drawable/tysdkn_bg_succeed">
- <!--<LinearLayout-->
- <!--android:layout_width="match_parent"-->
- <!--android:layout_height="wrap_content"-->
- <!--android:orientation="vertical">-->
- <!--<ImageView-->
- <!--android:id="@+id/imageView"-->
- <!--android:layout_width="100dp"-->
- <!--android:layout_height="100dp"-->
- <!--android:layout_gravity="center"-->
- <!--android:layout_marginBottom="20dp"-->
- <!--android:layout_marginTop="20dp"-->
- <!--android:src="@drawable/tysdkn_code"/>-->
- <!--</LinearLayout>-->
- <ImageView
- android:id="@+id/tysdkn_dialog_close_code"
- android:layout_width="28dp"
- android:layout_height="15dp"
- android:layout_alignParentRight="true"
- android:layout_marginRight="8dp"
- android:layout_marginTop="8dp"
- android:src="@drawable/tysdkn_close_white"/>
- </RelativeLayout>
- <TextView
- android:id="@+id/tysdkn_dialog_tv1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_marginTop="10dp"
- android:textStyle="bold"
- android:gravity="center"
- android:text="领取成功"
- android:textColor="#333333"
- android:textSize="14sp"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:layout_marginBottom="5dp"
- android:gravity="center"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tysdkn_dialog_tv2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="礼包码: "
- android:textSize="12sp"
- android:textColor="#999999"/>
- <TextView
- android:id="@+id/tysdkn_dialog_code"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:lines="1"
- android:ellipsize="end"
- android:textColor="#E6454A"
- android:textSize="12sp"
- tools:text="123456"/>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginTop="5dp"
- android:background="#dcdcdc"/>
- <TextView
- android:id="@+id/tysdkn_dialog_copy"
- android:layout_width="match_parent"
- android:paddingBottom="8dp"
- android:paddingTop="8dp"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:textSize="14sp"
- android:text="复制激活码"
- android:textColor="#E6454A"/>
- </LinearLayout>
|