12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="#ffffff"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="43dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="15dp"
- android:text="@string/bdp_paycenter_current_account"
- android:textColor="@color/bdp_color_999999"
- android:textSize="@dimen/bdp_paycenter_text_size_14_sp" />
- <TextView
- android:id="@+id/bdp_paycenter_tv_current_account"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="15dp"
- android:textColor="@color/bdp_color_999999"
- android:textSize="14sp" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="#d8d8d8" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="43dp" >
- <TextView
- android:id="@+id/bdp_paycenter_tv_coin_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="15dp"
- android:text="@string/bdp_paycenter_baidubean_balance"
- android:textColor="@color/bdp_color_999999"
- android:textSize="@dimen/bdp_paycenter_text_size_14_sp" />
- <TextView
- android:id="@+id/bdp_paycenter_tv_kubi_balance"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="15dp"
- android:textColor="@color/bdp_color_999999"
- android:textSize="14sp" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="15dp"
- android:background="#f5f5f5" />
- </LinearLayout>
|