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

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

Issue 2854643002: [Android] Width constrain bookmarks and downloads UIs (Closed)
Patch Set: Created 3 years, 7 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 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 <LinearLayout 6 <LinearLayout
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:chrome="http://schemas.android.com/apk/res-auto" 8 xmlns:chrome="http://schemas.android.com/apk/res-auto"
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:paddingStart="@dimen/downloads_item_margin" 11 android:paddingTop="16dp"
12 android:paddingEnd="14dp"
13 android:paddingTop="26dp"
14 android:paddingBottom="6dp" 12 android:paddingBottom="6dp"
15 android:orientation="vertical" > 13 android:orientation="vertical" >
16 14
17 <TextView 15 <TextView
18 android:id="@+id/size_downloaded" 16 android:id="@+id/size_downloaded"
19 android:layout_width="match_parent" 17 android:layout_width="match_parent"
20 android:layout_height="wrap_content" 18 android:layout_height="wrap_content"
21 android:singleLine="true" 19 android:singleLine="true"
22 android:textColor="@color/google_blue_500" 20 android:textColor="@color/google_blue_500"
23 android:textSize="16sp" 21 android:textSize="16sp"
(...skipping 20 matching lines...) Expand all
44 42
45 <TextView 43 <TextView
46 android:id="@+id/size_free" 44 android:id="@+id/size_free"
47 android:layout_width="match_parent" 45 android:layout_width="match_parent"
48 android:layout_height="wrap_content" 46 android:layout_height="wrap_content"
49 android:singleLine="true" 47 android:singleLine="true"
50 android:textColor="@color/black_alpha_54" 48 android:textColor="@color/black_alpha_54"
51 android:textSize="14sp" /> 49 android:textSize="14sp" />
52 50
53 </LinearLayout> 51 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698