| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
| 5 | 5 |
| 6 <!-- Represents a single item in the DownloadHistoryAdapterView. --> | 6 <!-- Represents a single item in the DownloadHistoryAdapterView. --> |
| 7 <view class="org.chromium.chrome.browser.download.ui.DownloadItemView" | 7 <view class="org.chromium.chrome.browser.download.ui.DownloadItemView" |
| 8 xmlns:android="http://schemas.android.com/apk/res/android" | 8 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 android:id="@+id/hostname_view" | 45 android:id="@+id/hostname_view" |
| 46 android:layout_width="0dp" | 46 android:layout_width="0dp" |
| 47 android:layout_height="wrap_content" | 47 android:layout_height="wrap_content" |
| 48 android:layout_alignParentBottom="true" | 48 android:layout_alignParentBottom="true" |
| 49 android:layout_toEndOf="@+id/icon_view" | 49 android:layout_toEndOf="@+id/icon_view" |
| 50 android:layout_toStartOf="@+id/filesize_view" | 50 android:layout_toStartOf="@+id/filesize_view" |
| 51 android:layout_below="@+id/filename_view" | 51 android:layout_below="@+id/filename_view" |
| 52 android:layout_marginEnd="16dp" | 52 android:layout_marginEnd="16dp" |
| 53 android:layout_marginTop="0dp" | 53 android:layout_marginTop="0dp" |
| 54 android:textAlignment="viewStart" | 54 android:textAlignment="viewStart" |
| 55 android:textColor="@color/google_grey_600" |
| 55 android:ellipsize="start" | 56 android:ellipsize="start" |
| 56 android:singleLine="true" /> | 57 android:singleLine="true" /> |
| 57 | 58 |
| 58 <TextView | 59 <TextView |
| 59 android:id="@+id/filesize_view" | 60 android:id="@+id/filesize_view" |
| 60 android:layout_width="wrap_content" | 61 android:layout_width="wrap_content" |
| 61 android:layout_height="wrap_content" | 62 android:layout_height="wrap_content" |
| 62 android:layout_alignParentBottom="true" | 63 android:layout_alignParentBottom="true" |
| 63 android:layout_alignParentEnd="true" | 64 android:layout_alignParentEnd="true" |
| 64 android:layout_below="@+id/filename_view" | 65 android:layout_below="@+id/filename_view" |
| 65 android:layout_marginTop="0dp" | 66 android:layout_marginTop="0dp" |
| 66 android:textAlignment="viewEnd" | 67 android:textAlignment="viewEnd" |
| 68 android:textColor="@color/google_grey_600" |
| 67 android:singleLine="true" /> | 69 android:singleLine="true" /> |
| 68 </RelativeLayout> | 70 </RelativeLayout> |
| 69 | 71 |
| 70 </view> | 72 </view> |
| OLD | NEW |