layout_dialog_prompt.xml
1.31 KB
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
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/prompt_layput"
android:layout_width="225dp"
android:layout_height="238dp"
android:layout_gravity="center"
android:orientation="vertical"
android:background="@mipmap/vote_success"
>
<!-- 投票结果 -->
<TextView
android:textColor="@color/color_333"
android:layout_marginTop="114dp"
android:id="@+id/act_vote_result"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="投票未成功"
android:textSize="17sp" />
<!-- 投票结果 -->
<TextView
android:layout_marginTop="9dp"
android:textColor="@color/color_999"
android:id="@+id/act_vote_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="票数:+1"
android:textSize="14sp" />
<ImageButton
android:id="@+id/btn_roger"
android:background="@mipmap/roger_img"
android:layout_marginTop="35dp"
android:layout_gravity="center_horizontal"
android:layout_width="168dp"
android:layout_height="33dp" />
</LinearLayout>