Skip to content

Commit 43070aa

Browse files
committed
merge 完成
1 parent efbf521 commit 43070aa

File tree

1 file changed

+129
-0
lines changed

1 file changed

+129
-0
lines changed
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:app="http://schemas.android.com/apk/res-auto"
4+
xmlns:tools="http://schemas.android.com/tools"
5+
android:layout_width="match_parent"
6+
android:layout_height="wrap_content"
7+
android:background="@drawable/shape_dialog_white_bg"
8+
android:orientation="vertical"
9+
android:padding="15dp">
10+
11+
<ImageView
12+
android:id="@+id/closeDialog"
13+
android:layout_width="wrap_content"
14+
android:layout_height="wrap_content"
15+
android:layout_alignParentRight="true"
16+
android:layout_centerVertical="true"
17+
android:src="@drawable/maopao_extra_close" />
18+
19+
<de.hdodenhof.circleimageview.CircleImageView
20+
android:layout_width="60dp"
21+
android:layout_height="60dp"
22+
android:layout_gravity="center_horizontal"
23+
android:layout_marginTop="-10dp"
24+
android:scaleType="centerCrop"
25+
android:src="@drawable/ic_default_user"
26+
android:id="@+id/userIcon"
27+
app:border_color="#FFCCCCCC"
28+
app:border_width="0.4dp" />
29+
30+
<TextView
31+
android:id="@+id/title"
32+
android:layout_width="wrap_content"
33+
android:layout_height="wrap_content"
34+
android:layout_centerHorizontal="true"
35+
android:layout_centerVertical="true"
36+
android:layout_gravity="center_horizontal"
37+
android:layout_marginBottom="25dp"
38+
android:layout_marginTop="25dp"
39+
android:text="打赏给该用户 0.01 码币"
40+
android:textColor="@color/font_black_0"
41+
android:textSize="18sp" />
42+
43+
<LinearLayout
44+
android:id="@+id/inputLayout"
45+
android:layout_width="match_parent"
46+
android:layout_height="wrap_content"
47+
android:orientation="vertical"
48+
android:visibility="gone"
49+
tools:visibility="visible">
50+
51+
<LinearLayout
52+
android:id="@+id/editLayout"
53+
android:layout_width="wrap_content"
54+
android:layout_height="wrap_content"
55+
android:layout_marginBottom="23dp"
56+
android:layout_marginLeft="40dp"
57+
android:layout_marginRight="40dp"
58+
android:orientation="vertical"
59+
tools:visibility="gone">
60+
61+
<EditText
62+
android:id="@+id/password"
63+
android:layout_width="match_parent"
64+
android:layout_height="30dp"
65+
android:background="@null"
66+
android:hint="请输入密码"
67+
android:textColorHint="#FFCCCCCC"
68+
android:inputType="textPassword"
69+
android:textSize="16sp" />
70+
71+
<include
72+
layout="@layout/divide_1"
73+
android:layout_width="match_parent"
74+
android:layout_height="1dp" />
75+
</LinearLayout>
76+
77+
78+
<RelativeLayout
79+
android:layout_width="match_parent"
80+
android:layout_height="wrap_content" >
81+
82+
<TextView
83+
android:id="@+id/buttonReward"
84+
android:layout_width="130dp"
85+
android:layout_height="45dp"
86+
android:layout_gravity="center_horizontal"
87+
android:background="@drawable/login_button"
88+
android:gravity="center"
89+
android:text=""
90+
android:layout_centerInParent="true"
91+
android:textColor="@color/white"
92+
tools:visibility="gone"
93+
android:textSize="20sp" />
94+
95+
<TextView
96+
android:id="@+id/cannotReward"
97+
android:layout_width="match_parent"
98+
android:layout_height="wrap_content"
99+
android:layout_gravity="center"
100+
android:layout_marginLeft="40dp"
101+
android:layout_marginRight="40dp"
102+
android:background="#FFF2DEDE"
103+
android:gravity="center"
104+
android:paddingBottom="14dp"
105+
android:paddingLeft="20dp"
106+
android:paddingRight="20dp"
107+
android:paddingTop="14dp"
108+
android:text="很遗憾,对方还未验证手机无法打赏"
109+
android:textColor="#FFC55351"
110+
android:visibility="gone"
111+
tools:visibility="visible" />
112+
113+
</RelativeLayout>
114+
115+
</LinearLayout>
116+
117+
<TextView
118+
android:id="@+id/myPoints"
119+
android:layout_width="wrap_content"
120+
android:layout_height="wrap_content"
121+
android:layout_gravity="center_horizontal"
122+
android:layout_marginTop="14dp"
123+
android:visibility="visible"
124+
tools:text="我的码币余额:0.41 "
125+
android:textColor="#FF808080"
126+
tools:visibility="visible" />
127+
128+
129+
</LinearLayout>

0 commit comments

Comments
 (0)