沈斌
2017-01-02 26008989ed5af5eaad82ce29d9a8b8e2e35e2254
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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="32dp"
    android:background="@color/wallet_base_window_bg"
    android:descendantFocusability="beforeDescendants"
    android:gravity="center_vertical"
    android:orientation="horizontal"
    >
 
    <TextView
        android:id="@+id/tip_type"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/ebpay_blue"
        android:textSize="16sp" />
 
    <TextView
        android:id="@+id/tip_content"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="8dp"
        android:drawablePadding="5dp"
        android:gravity="right|center_vertical"
        android:textColor="@color/wallet_base_click_text_color"
        android:textSize="16sp" />
 
    <!-- <ImageView -->
    <!-- android:id="@+id/arrow" -->
    <!-- android:layout_width="wrap_content" -->
    <!-- android:layout_height="wrap_content" -->
    <!-- android:layout_gravity="right|center_vertical" -->
    <!-- android:clickable="false" -->
    <!-- android:contentDescription="@string/ebpay_img" -->
    <!-- android:src="@drawable/ebpay_arrow_expand_order" -->
    <!-- android:visibility="gone" /> -->
 
</LinearLayout>