Blame view

app/src/main/res/layout/fragment_multi_title_detail.xml 4.21 KB
27983dbe   孙向锦   project init
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  <?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:background="@color/votebakground"
        >
      
      
      
        
       
       <ImageButton 
           android:id="@+id/mutli_title_detail_btnback"
           android:background="@drawable/back_selector"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_marginLeft="36px"
           android:layout_marginTop="48px"
           />
      
        
       <ScrollView
  		    android:id="@+id/mutli_title_detail_scview"
  		    android:layout_width="fill_parent"
  		     android:layout_height="wrap_content"
  		     android:layout_marginLeft="80px"
           	android:layout_marginRight="80px"
           	android:layout_marginTop="20px"
  		     android:layout_below="@id/mutli_title_detail_btnback"
  		    android:scrollbars="none"
  		    android:fillViewport="false">
  		    
       <TextView 
           android:id="@+id/mutli_title_detail_content"
           android:text="@string/please_vote"
           android:layout_height="wrap_content"
            android:textSize="50px"
            android:gravity="center"
           android:background="@color/white"
           android:layout_width="match_parent"
          
            android:textColor="@color/black"
           android:layout_centerInParent="true"
          
   
           />
       </ScrollView>
       
        <TextView 
           android:id="@+id/mutli_title_detail_tv_tips"
           android:layout_alignParentBottom="true"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_centerHorizontal="true"
           android:layout_marginBottom="48px"
           android:text="@string/please_press_key"
           android:textSize="30px"
           android:textColor="#878787"
           />
       
       <Button 
           android:id="@+id/mutli_title_detail_btnB"
           android:layout_width="312px"
           android:layout_height="96px"
           android:layout_marginBottom="36px"
           android:background="@drawable/oppos_selector"
           android:text="@string/oppose"
           android:textSize="36px"
            android:textColor="@color/white"
           android:textStyle = "bold"
           android:layout_above="@id/mutli_title_detail_tv_tips"
           android:layout_centerHorizontal="true"
           />
       
       <Button 
           android:id="@+id/mutli_title_detail_btnA"
           android:layout_width="312px"
           android:layout_height="96px"
           android:layout_marginBottom="36px"
           android:layout_marginRight = "62px"
           android:textSize="36px"
           android:textStyle = "bold"
           android:textColor="@color/white"
           android:background="@drawable/agree_selector"
           android:text="@string/agree"
           android:layout_above="@id/mutli_title_detail_tv_tips"
           android:layout_toLeftOf="@id/mutli_title_detail_btnB"
           />
       
       <Button 
           android:id="@+id/mutli_title_detail_btnC"
           android:layout_width="312px"
           android:layout_height="96px"
           android:layout_marginBottom="36px"
           android:layout_marginLeft = "62px"
           android:textColor="@color/white"
            android:textSize="36px"
           android:textStyle = "bold"
           android:background="@drawable/abstain_selector"
           android:text="@string/abstant"
           android:layout_above="@id/mutli_title_detail_tv_tips"
           android:layout_toRightOf="@id/mutli_title_detail_btnB"
           />
       
      
       
       
       <TextView 
           android:id="@+id/mutli_title_detail_tv_result"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_alignTop="@id/mutli_title_detail_scview"
           android:layout_alignRight="@id/mutli_title_detail_scview"
           android:layout_marginRight="160px"
           android:background="@drawable/voted_empty"
            android:gravity="center"
            android:text=""
            android:textSize="50px"
            android:textStyle="bold"
            android:textColor="#ddff9933"
            android:alpha="0.9"
            android:rotation="-20"
           android:visibility="visible"
           />
      
  </RelativeLayout>