12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context="com.smwl.smsdk.activity.PayResultAdActivity"
- tools:ignore="MissingDefaultResource">
- <TextView
- android:id="@+id/tv_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_above="@+id/iv_ad_recommend"
- android:layout_margin="10dp"
- android:gravity="center"
- android:text="@string/x7_pay_succeed"
- android:textColor="@color/x7_text_red"
- android:textSize="24sp" />
- <TextView
- android:id="@+id/tv_pay_result_hint"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignTop="@+id/iv_ad_recommend"
- android:layout_alignBottom="@+id/iv_ad_recommend"
- android:layout_alignParentLeft="true"
- android:layout_marginBottom="10dp"
- android:layout_toLeftOf="@+id/iv_ad_recommend"
- android:gravity="center"
- android:textColor="@color/x7_text_green" />
- <ImageView
- android:id="@+id/iv_ad_recommend"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_alignParentBottom="true"
- android:layout_marginLeft="16dp"
- android:layout_marginTop="25dp"
- android:layout_marginRight="16dp"
- android:layout_marginBottom="10dp"
- android:contentDescription="TODO"
- android:scaleType="fitXY" />
- </RelativeLayout>
|