sdk_charge_item.xml
1.4 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:gravity="center"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/charge_type_icon"
android:layout_width="@dimen/x32"
android:layout_centerInParent="true"
android:layout_height="@dimen/x32"
android:src="@drawable/bg_recharge_pay_wechat"/>
<TextView
android:id="@+id/charge_type_tv"
android:layout_width="wrap_content"
android:layout_height="@dimen/y100"
android:layout_marginLeft="@dimen/x24"
android:gravity="center_vertical"
android:textSize="@dimen/x24"
android:layout_centerInParent="true"
android:textColor="@color/color_3B3B3B"
android:text="微信支付"/>
</LinearLayout>
<View
android:id="@+id/line_bottom"
android:layout_width="match_parent"
android:layout_height="0.2dp"
android:layout_marginRight="@dimen/x40"
android:layout_marginLeft="@dimen/x40"
android:layout_below="@+id/account_safe_tips_title"
android:background="@color/color_B0B0B0"/>
</LinearLayout>