| 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
| 10 android:layout_height="wrap_content" | 10 android:layout_height="wrap_content" |
| 11 android:gravity="center_vertical" | 11 android:gravity="center_vertical" |
| 12 android:orientation="horizontal" > | 12 android:orientation="horizontal" > |
| 13 | 13 |
| 14 <!-- These layout params are overwritten in DropdownAdapter.java --> | 14 <!-- These layout params are overwritten in DropdownAdapter.java --> |
| 15 | |
| 16 <ImageView | 15 <ImageView |
| 17 android:id="@+id/start_dropdown_icon" | 16 android:id="@+id/start_dropdown_icon" |
| 18 android:layout_width="wrap_content" | 17 android:layout_width="wrap_content" |
| 19 android:layout_height="wrap_content" | 18 android:layout_height="wrap_content" |
| 20 android:layout_margin="8dp" | 19 android:layout_margin="8dp" |
| 21 android:contentDescription="@null" /> | 20 android:contentDescription="@null" /> |
| 22 | 21 |
| 23 <LinearLayout | 22 <LinearLayout |
| 24 android:id="@+id/dropdown_label_wrapper" | 23 android:id="@+id/dropdown_label_wrapper" |
| 25 android:layout_width="0dp" | 24 android:layout_width="0dp" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 56 </LinearLayout> | 55 </LinearLayout> |
| 57 | 56 |
| 58 <ImageView | 57 <ImageView |
| 59 android:id="@+id/end_dropdown_icon" | 58 android:id="@+id/end_dropdown_icon" |
| 60 android:layout_width="wrap_content" | 59 android:layout_width="wrap_content" |
| 61 android:layout_height="wrap_content" | 60 android:layout_height="wrap_content" |
| 62 android:layout_margin="8dp" | 61 android:layout_margin="8dp" |
| 63 android:contentDescription="@null" /> | 62 android:contentDescription="@null" /> |
| 64 | 63 |
| 65 </LinearLayout> | 64 </LinearLayout> |
| OLD | NEW |