| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 | 3 |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:layout_width="wrap_content" | 9 android:layout_width="wrap_content" |
| 10 android:layout_height="wrap_content"> | 10 android:layout_height="wrap_content"> |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 android:layout_alignStart="@+id/controls_container" | 169 android:layout_alignStart="@+id/controls_container" |
| 170 android:layout_alignEnd="@+id/controls_container" | 170 android:layout_alignEnd="@+id/controls_container" |
| 171 android:orientation="horizontal" | 171 android:orientation="horizontal" |
| 172 android:gravity="center" | 172 android:gravity="center" |
| 173 android:visibility="gone"> | 173 android:visibility="gone"> |
| 174 | 174 |
| 175 <ProgressBar | 175 <ProgressBar |
| 176 android:id="@+id/verification_progress_bar" | 176 android:id="@+id/verification_progress_bar" |
| 177 android:layout_width="16dp" | 177 android:layout_width="16dp" |
| 178 android:layout_height="16dp" | 178 android:layout_height="16dp" |
| 179 style="@android:style/Widget.Material.Light.ProgressBar.Small" | |
| 180 android:visibility="gone" /> | 179 android:visibility="gone" /> |
| 181 | 180 |
| 182 <!-- TODO(estade): add a real content description for this image. --> | 181 <!-- TODO(estade): add a real content description for this image. --> |
| 183 <ImageView | 182 <ImageView |
| 184 android:id="@+id/verification_success" | 183 android:id="@+id/verification_success" |
| 185 android:layout_width="wrap_content" | 184 android:layout_width="wrap_content" |
| 186 android:layout_height="wrap_content" | 185 android:layout_height="wrap_content" |
| 187 android:src="@drawable/verify_checkmark" | 186 android:src="@drawable/verify_checkmark" |
| 188 android:visibility="gone" | 187 android:visibility="gone" |
| 189 android:contentDescription="@null" /> | 188 android:contentDescription="@null" /> |
| 190 | 189 |
| 191 <TextView | 190 <TextView |
| 192 android:id="@+id/verification_message" | 191 android:id="@+id/verification_message" |
| 193 android:layout_width="wrap_content" | 192 android:layout_width="wrap_content" |
| 194 android:layout_height="wrap_content" | 193 android:layout_height="wrap_content" |
| 195 android:layout_marginStart="8dp" | 194 android:layout_marginStart="8dp" |
| 196 android:textColor="?attr/colorAccent" | 195 android:textColor="?attr/colorAccent" |
| 197 android:textSize="12sp" /> | 196 android:textSize="12sp" /> |
| 198 </LinearLayout> | 197 </LinearLayout> |
| 199 </RelativeLayout> | 198 </RelativeLayout> |
| OLD | NEW |