OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <TableRow |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:settings="http://schemas.android.com/apk/res-auto" |
| 9 android:id="@+id/site_row" |
| 10 android:layout_width="match_parent"> |
| 11 |
| 12 <TextView |
| 13 android:id="@+id/site_hostname" |
| 14 android:layout_width="0dp" |
| 15 android:layout_weight="0" |
| 16 style="@style/DataUsageBreakdownColumnItem" /> |
| 17 |
| 18 <TextView |
| 19 android:id="@+id/site_data_used" |
| 20 android:layout_width="wrap_content" |
| 21 android:gravity="end" |
| 22 android:paddingStart="10dp" |
| 23 style="@style/DataUsageBreakdownColumnItem" /> |
| 24 |
| 25 <TextView |
| 26 android:id="@+id/site_data_saved" |
| 27 android:layout_width="wrap_content" |
| 28 android:gravity="end" |
| 29 android:paddingStart="24dp" |
| 30 style="@style/DataUsageBreakdownColumnItem" /> |
| 31 </TableRow> |
OLD | NEW |