Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(414)

Side by Side Diff: chrome/android/java/res/layout/data_usage_breakdown_row.xml

Issue 2813923003: Add sorting to the Data Saver site breakdown (Closed)
Patch Set: remove dependency Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. 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 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 <TableRow 6 <TableRow
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:settings="http://schemas.android.com/apk/res-auto" 8 xmlns:settings="http://schemas.android.com/apk/res-auto"
9 android:id="@+id/site_row" 9 android:id="@+id/site_row"
10 android:layout_width="match_parent"> 10 android:layout_width="match_parent">
11 11
12 <TextView 12 <TextView
13 android:id="@+id/site_hostname" 13 android:id="@+id/site_hostname"
14 android:layout_width="0dp" 14 android:layout_width="0dp"
15 android:layout_weight="0" 15 android:layout_weight="0"
16 android:layout_gravity="start"
16 style="@style/DataUsageBreakdownColumnItem" /> 17 style="@style/DataUsageBreakdownColumnItem" />
17 18
18 <TextView 19 <TextView
19 android:id="@+id/site_data_used" 20 android:id="@+id/site_data_used"
20 android:layout_width="wrap_content" 21 android:layout_width="wrap_content"
22 android:layout_marginStart="24dp"
21 android:gravity="end" 23 android:gravity="end"
22 android:paddingStart="10dp"
23 style="@style/DataUsageBreakdownColumnItem" /> 24 style="@style/DataUsageBreakdownColumnItem" />
24 25
25 <TextView 26 <TextView
26 android:id="@+id/site_data_saved" 27 android:id="@+id/site_data_saved"
27 android:layout_width="wrap_content" 28 android:layout_width="wrap_content"
29 android:layout_marginStart="24dp"
28 android:gravity="end" 30 android:gravity="end"
29 android:paddingStart="24dp"
30 style="@style/DataUsageBreakdownColumnItem" /> 31 style="@style/DataUsageBreakdownColumnItem" />
31 </TableRow> 32 </TableRow>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/data_usage_breakdown.xml ('k') | chrome/android/java/res/values-v17/styles.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698