fac86401
孙向锦
初始化C5 Vote
|
1
2
3
4
5
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/signin_bg"
|
4c3de86c
孙向锦
UI改版第一版
|
6
|
android:background="@drawable/bgpic_4"
|
fac86401
孙向锦
初始化C5 Vote
|
7
8
9
10
11
12
13
|
>
<View
android:id="@+id/signin_midline"
android:layout_width="match_parent"
android:layout_height="@dimen/content_margin"
android:layout_centerInParent="true" />
|
4c3de86c
孙向锦
UI改版第一版
|
14
|
|
fac86401
孙向锦
初始化C5 Vote
|
15
16
17
18
19
20
21
22
23
|
<TextView
android:id="@+id/signin_title"
android:textSize="@dimen/big_text_p2"
android:layout_marginTop="@dimen/content_margin"
android:textColor="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
|
4c3de86c
孙向锦
UI改版第一版
|
24
|
android:layout_below="@id/signin_midline"
|
fac86401
孙向锦
初始化C5 Vote
|
25
26
27
|
android:text="@string/please_signin"
/>
|
4c3de86c
孙向锦
UI改版第一版
|
28
29
30
31
32
33
34
35
36
37
38
39
|
<Button
android:id="@+id/signin_btnSign"
android:layout_width="@dimen/button_width"
android:layout_height="@dimen/button_heigh"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:background="@drawable/signin_selector"
android:text="@string/signin"
android:enabled="false"
android:textSize="@dimen/big_text_p4"
android:layout_below="@id/signin_title"/>
|
fac86401
孙向锦
初始化C5 Vote
|
40
|
</RelativeLayout>
|