OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | |
newt (away)
2015/03/04 03:47:07
2015
aurimas (slooooooooow)
2015/03/10 22:16:51
Done
| |
3 | |
4 Use of this source code is governed by a BSD-style license that can be | |
5 found in the LICENSE file. | |
6 --> | |
7 <FrameLayout | |
8 xmlns:android="http://schemas.android.com/apk/res/android" | |
9 android:layout_width="match_parent" | |
10 android:layout_height="match_parent" > | |
11 | |
12 <ScrollView | |
13 android:id="@+id/scroll_view" | |
14 android:layout_width="match_parent" | |
15 android:layout_height="match_parent" | |
16 android:layout_marginBottom="57dp" | |
17 android:fillViewport="true" | |
18 android:scrollbarStyle="outsideOverlay" > | |
19 | |
20 <LinearLayout | |
21 android:layout_width="match_parent" | |
22 android:layout_height="wrap_content" | |
23 android:orientation="vertical" | |
24 android:gravity="center_horizontal" > | |
25 | |
26 <FrameLayout | |
27 android:id="@+id/image_view_wrapper" | |
28 android:layout_width="wrap_content" | |
29 android:layout_height="0dp" | |
30 android:layout_weight="1" > | |
31 | |
32 <ImageView | |
33 android:id="@+id/image_view" | |
34 android:layout_width="wrap_content" | |
35 android:layout_height="wrap_content" | |
36 android:contentDescription="@null" | |
37 android:src="@null" /> | |
38 </FrameLayout> | |
39 | |
40 <LinearLayout | |
41 android:layout_width="match_parent" | |
42 android:layout_height="wrap_content" | |
43 android:orientation="vertical" | |
44 android:padding="@dimen/fre_margin" > | |
45 | |
46 <TextView | |
47 android:id="@+id/title" | |
48 android:layout_width="match_parent" | |
49 android:layout_height="wrap_content" | |
50 android:layout_marginBottom="12dp" | |
51 android:gravity="center" | |
52 android:text="@null" | |
53 android:textColor="@color/fre_title_color" | |
54 android:textSize="@dimen/fre_title_text_size" /> | |
55 | |
56 <org.chromium.ui.widget.TextViewWithClickableSpans | |
57 android:id="@+id/text" | |
58 android:layout_width="match_parent" | |
59 android:layout_height="wrap_content" | |
60 android:gravity="center" | |
61 android:text="@null" | |
62 android:lineSpacingMultiplier="1.4" | |
63 android:textColor="@color/fre_light_text_color" | |
64 android:textSize="@dimen/fre_normal_text_size" /> | |
65 </LinearLayout> | |
66 </LinearLayout> | |
67 </ScrollView> | |
68 | |
69 <View | |
70 style="@style/ButtonBarTopDivider" | |
71 android:layout_gravity="bottom" | |
72 android:layout_marginBottom="56dp" /> | |
73 | |
74 <LinearLayout | |
75 android:id="@+id/button_bar" | |
76 android:layout_width="match_parent" | |
77 android:layout_height="56dp" | |
78 android:layout_gravity="bottom" | |
79 android:orientation="horizontal" > | |
80 | |
81 <Button | |
82 android:id="@+id/negative_button" | |
83 android:layout_width="0dp" | |
84 android:layout_height="match_parent" | |
85 android:layout_weight="1" | |
86 android:background="?attr/listChoiceBackgroundIndicator" | |
87 android:gravity="start|center_vertical" | |
88 android:textDirection="locale" | |
89 android:padding="16dp" | |
90 android:text="@string/fre_settings" | |
91 android:textAllCaps="true" | |
92 android:textColor="@color/light_normal_color" | |
93 android:textSize="@dimen/fre_button_text_size" /> | |
94 | |
95 <Button | |
96 android:id="@+id/positive_button" | |
97 android:layout_width="0dp" | |
98 android:layout_height="match_parent" | |
99 android:layout_weight="1" | |
100 android:background="?attr/listChoiceBackgroundIndicator" | |
101 android:gravity="end|center_vertical" | |
102 android:textDirection="locale" | |
103 android:padding="16dp" | |
104 android:text="@string/fre_next" | |
105 android:textAllCaps="true" | |
106 android:textColor="@color/light_active_color" | |
107 android:textSize="@dimen/fre_button_text_size" /> | |
108 </LinearLayout> | |
109 | |
110 </FrameLayout> | |
OLD | NEW |