Blame view

C5/app/src/main/res/layout/activity_main.xml 2.01 KB
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
  
793e2ae4   wutaian   添加系统状态条,修改选举根据主控值...
9
     <TextView
fac86401   孙向锦   初始化C5 Vote
10
11
          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"
793e2ae4   wutaian   添加系统状态条,修改选举根据主控值...
17
          android:visibility="gone"
fac86401   孙向锦   初始化C5 Vote
18
19
          android:text="Default" />
  
793e2ae4   wutaian   添加系统状态条,修改选举根据主控值...
20
21
22
23
24
25
26
      <com.sunvote.xpadapp.widget.StatusBarView
          android:id="@+id/title_status"
          android:layout_alignParentTop="true"
          android:layout_centerHorizontal="true"
          android:layout_width="match_parent"
          android:layout_height="22dp"/>
  
4c3de86c   孙向锦   UI改版第一版
27
28
29
30
      <FrameLayout
          android:id="@+id/frame_content"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
793e2ae4   wutaian   添加系统状态条,修改选举根据主控值...
31
          android:layout_below="@id/title_status"/>
4c3de86c   孙向锦   UI改版第一版
32
  
fac86401   孙向锦   初始化C5 Vote
33
34
      <ImageView
          android:id="@+id/service"
3bef6993   孙向锦   批次表决界面UI修改
35
36
          android:layout_width="40dp"
          android:layout_height="40dp"
fac86401   孙向锦   初始化C5 Vote
37
          android:layout_alignParentRight="true"
4c3de86c   孙向锦   UI改版第一版
38
          android:layout_alignParentTop="true"
fac86401   孙向锦   初始化C5 Vote
39
          android:layout_marginRight="20dp"
4c3de86c   孙向锦   UI改版第一版
40
          android:layout_marginTop="40dp"
fac86401   孙向锦   初始化C5 Vote
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
          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>