fac86401
孙向锦
初始化C5 Vote
|
1
2
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
|
3e1796db
孙向锦
管理员界面修改
|
3
|
android:id="@+id/root"
|
fac86401
孙向锦
初始化C5 Vote
|
4
5
|
android:layout_width="match_parent"
android:layout_height="match_parent"
|
4c3de86c
孙向锦
UI改版第一版
|
6
7
|
tools:context="com.sunvote.xpadapp.MainActivity"
android:background="#720600">
|
fac86401
孙向锦
初始化C5 Vote
|
8
9
10
11
|
<TextView
android:id="@+id/terminal_id"
android:layout_width="wrap_content"
|
4c3de86c
孙向锦
UI改版第一版
|
12
|
android:layout_height="20dp"
|
fac86401
孙向锦
初始化C5 Vote
|
13
14
15
|
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:gravity="center_horizontal"
|
4c3de86c
孙向锦
UI改版第一版
|
16
|
android:textColor="@color/white"
|
fac86401
孙向锦
初始化C5 Vote
|
17
18
|
android:text="Default" />
|
4c3de86c
孙向锦
UI改版第一版
|
19
20
21
22
23
24
|
<FrameLayout
android:id="@+id/frame_content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/terminal_id"/>
|
fac86401
孙向锦
初始化C5 Vote
|
25
26
|
<ImageView
android:id="@+id/service"
|
3bef6993
孙向锦
批次表决界面UI修改
|
27
28
|
android:layout_width="40dp"
android:layout_height="40dp"
|
fac86401
孙向锦
初始化C5 Vote
|
29
|
android:layout_alignParentRight="true"
|
4c3de86c
孙向锦
UI改版第一版
|
30
|
android:layout_alignParentTop="true"
|
fac86401
孙向锦
初始化C5 Vote
|
31
|
android:layout_marginRight="20dp"
|
4c3de86c
孙向锦
UI改版第一版
|
32
|
android:layout_marginTop="40dp"
|
fac86401
孙向锦
初始化C5 Vote
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
android:src="@drawable/service_server" />
<RelativeLayout
android:id="@+id/service_panel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/white"
android:layout_centerInParent="true"
android:visibility="gone">
<include layout="@layout/dialog_service" />
</RelativeLayout>
<FrameLayout
android:id="@+id/lockscreen"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone"></FrameLayout>
</RelativeLayout>
|