|
32 | 32 | android:orientation="vertical" |
33 | 33 | android:weightSum="2" > |
34 | 34 |
|
35 | | - <LinearLayout |
36 | | - android:id="@+id/TopFrame" |
37 | | - android:layout_width="fill_parent" |
38 | | - android:layout_height="0dp" |
39 | | - android:layout_margin="@dimen/size_5dp" |
40 | | - android:layout_weight="0.75" |
41 | | - android:orientation="horizontal" |
42 | | - android:weightSum="2" > |
43 | | - |
44 | | - <ImageView |
45 | | - android:id="@+id/PassImageViewCylab" |
46 | | - android:layout_width="0dp" |
47 | | - android:layout_height="wrap_content" |
48 | | - android:layout_weight="1.00" |
49 | | - android:contentDescription="@string/label_Photo" |
50 | | - android:scaleType="fitStart" |
51 | | - android:src="@drawable/logo_cylab_large" > |
52 | | - </ImageView> |
53 | | - |
54 | | - <ImageView |
55 | | - android:id="@+id/PassImageViewIcon" |
56 | | - android:layout_width="0dp" |
57 | | - android:layout_height="wrap_content" |
58 | | - android:layout_gravity="center_vertical" |
59 | | - android:layout_weight="0.95" |
60 | | - android:contentDescription="@string/label_Photo" |
61 | | - android:src="@drawable/logo_safeslinger_large" > |
62 | | - </ImageView> |
63 | | - |
64 | | - <ImageButton |
65 | | - android:id="@+id/PassButtonHelp" |
66 | | - android:layout_width="wrap_content" |
67 | | - android:layout_height="wrap_content" |
68 | | - android:layout_gravity="top|right" |
69 | | - android:layout_weight="0.05" |
70 | | - android:background="@color/white" |
71 | | - android:contentDescription="@string/menu_Help" |
72 | | - android:src="@drawable/ic_information" /> |
73 | | - </LinearLayout> |
74 | | - |
75 | 35 | <LinearLayout |
76 | 36 | android:id="@+id/BottomFrame" |
77 | 37 | android:layout_width="fill_parent" |
78 | | - android:layout_height="0dp" |
| 38 | + android:layout_height="match_parent" |
79 | 39 | android:layout_margin="@dimen/size_5dp" |
80 | | - android:layout_weight="1.25" |
81 | 40 | android:orientation="horizontal" |
82 | 41 | android:weightSum="2" > |
83 | 42 |
|
|
89 | 48 | android:layout_weight="1" |
90 | 49 | android:orientation="vertical" > |
91 | 50 |
|
92 | | - <TextView |
93 | | - android:id="@+id/PassTextViewAppName" |
| 51 | + <ImageView |
| 52 | + android:id="@+id/PassImageViewCylab" |
| 53 | + android:layout_width="match_parent" |
| 54 | + android:layout_height="0dp" |
| 55 | + android:layout_margin="@dimen/size_5dp" |
| 56 | + android:layout_weight="3" |
| 57 | + android:contentDescription="@string/label_Photo" |
| 58 | + android:scaleType="fitStart" |
| 59 | + android:src="@drawable/logo_cylab_large" /> |
| 60 | + |
| 61 | + <LinearLayout |
| 62 | + android:id="@+id/TitleFrame" |
94 | 63 | android:layout_width="fill_parent" |
95 | 64 | android:layout_height="wrap_content" |
96 | | - android:gravity="center_horizontal|bottom" |
97 | | - android:text="@string/app_name" |
98 | | - android:textSize="@dimen/text_size_40" > |
99 | | - </TextView> |
| 65 | + android:layout_margin="@dimen/size_5dp" |
| 66 | + android:orientation="vertical" > |
100 | 67 |
|
101 | | - <TextView |
102 | | - android:id="@+id/PassTextViewVersion" |
103 | | - android:layout_width="fill_parent" |
104 | | - android:layout_height="wrap_content" |
105 | | - android:gravity="center_horizontal|top" |
106 | | - android:textIsSelectable="false" |
107 | | - android:textSize="@dimen/text_size_small" > |
108 | | - </TextView> |
| 68 | + <TextView |
| 69 | + android:id="@+id/PassTextViewAppName" |
| 70 | + android:layout_width="fill_parent" |
| 71 | + android:layout_height="match_parent" |
| 72 | + android:gravity="center_horizontal|bottom" |
| 73 | + android:text="@string/app_name" |
| 74 | + android:textSize="@dimen/text_size_40" /> |
| 75 | + |
| 76 | + <TextView |
| 77 | + android:id="@+id/PassTextViewVersion" |
| 78 | + android:layout_width="fill_parent" |
| 79 | + android:layout_height="wrap_content" |
| 80 | + android:gravity="center_horizontal|top" |
| 81 | + android:textIsSelectable="false" |
| 82 | + android:textSize="@dimen/text_size_small" /> |
| 83 | + </LinearLayout> |
| 84 | + |
| 85 | + <LinearLayout |
| 86 | + android:layout_width="match_parent" |
| 87 | + android:layout_height="0dp" |
| 88 | + android:layout_weight="4" |
| 89 | + android:orientation="horizontal" > |
| 90 | + |
| 91 | + <ImageView |
| 92 | + android:id="@+id/PassImageViewIcon" |
| 93 | + android:layout_width="0dp" |
| 94 | + android:layout_height="match_parent" |
| 95 | + android:layout_weight="0.90" |
| 96 | + android:contentDescription="@string/app_name" |
| 97 | + android:scaleType="fitCenter" |
| 98 | + android:src="@drawable/logo_safeslinger_large" > |
| 99 | + </ImageView> |
| 100 | + </LinearLayout> |
109 | 101 |
|
110 | 102 | <RelativeLayout |
111 | 103 | android:id="@+id/MenuFrame" |
|
116 | 108 | android:id="@+id/PassFrameButtonForgot" |
117 | 109 | android:layout_width="wrap_content" |
118 | 110 | android:layout_height="wrap_content" |
119 | | - android:layout_alignParentBottom="true" |
120 | | - android:layout_alignParentLeft="true" > |
| 111 | + android:layout_alignParentLeft="true" |
| 112 | + android:layout_alignParentTop="true" |
| 113 | + android:layout_gravity="bottom|right" |
| 114 | + android:layout_marginBottom="@dimen/size_5dp" |
| 115 | + android:layout_marginTop="@dimen/size_5dp" > |
121 | 116 |
|
122 | 117 | <Button |
123 | 118 | android:id="@+id/PassButtonForgot" |
|
133 | 128 | android:textIsSelectable="false" |
134 | 129 | android:textSize="@dimen/text_size_small" /> |
135 | 130 | </RelativeLayout> |
| 131 | + |
| 132 | + <ImageButton |
| 133 | + android:id="@+id/PassButtonHelp" |
| 134 | + android:layout_width="wrap_content" |
| 135 | + android:layout_height="wrap_content" |
| 136 | + android:layout_alignParentRight="true" |
| 137 | + android:layout_centerVertical="true" |
| 138 | + android:background="@color/white" |
| 139 | + android:contentDescription="@string/menu_Help" |
| 140 | + android:src="@drawable/ic_information" /> |
136 | 141 | </RelativeLayout> |
137 | 142 | </LinearLayout> |
138 | 143 |
|
|
152 | 157 | android:textSize="@dimen/text_size_small" > |
153 | 158 | </Spinner> |
154 | 159 |
|
| 160 | + <EditText |
| 161 | + android:id="@+id/EditTextPassphraseConfirm" |
| 162 | + android:layout_width="fill_parent" |
| 163 | + android:layout_height="wrap_content" |
| 164 | + android:hint="@string/label_PassHintCurrent" |
| 165 | + android:imeOptions="actionNext" |
| 166 | + android:inputType="textPassword" |
| 167 | + android:privateImeOptions="nm" |
| 168 | + android:textSize="@dimen/text_size_msg" /> |
| 169 | + |
155 | 170 | <EditText |
156 | 171 | android:id="@+id/EditTextPassphrase" |
157 | 172 | android:layout_width="fill_parent" |
|
0 commit comments