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

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

Issue 2063983002: [Downloads] Fill in the drawer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@download_activity
Patch Set: Comments Created 4 years, 6 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
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
4 found in the LICENSE file. -->
5
6 <merge xmlns:android="http://schemas.android.com/apk/res/android">
7
8 <!-- TODO(dfalcantara): Figure out how to split off the units from the value and
9 then make that part of the string smaller with a Spa nnable.
10 -->
11 <TextView
12 android:id="@+id/space_used_display"
13 android:layout_width="match_parent"
14 android:layout_height="wrap_content"
15 android:paddingStart="@dimen/drawer_margin_large"
16 android:paddingEnd="@dimen/drawer_margin_large"
17 android:textColor="@color/light_active_color"
18 android:textSize="32sp" />
19
20 <TextView
21 android:id="@+id/space_total_display"
22 android:layout_width="match_parent"
23 android:layout_height="wrap_content"
24 android:paddingStart="@dimen/drawer_margin_large"
25 android:paddingEnd="@dimen/drawer_margin_large"
26 android:textColor="@color/descriptive_text_color" />
27
28 <!-- TODO(dfalcantara): Style this toolbar as Material on JB & KK.
29 These are currently broken in the support library an d look Holo.
30 -->
31 <ProgressBar
32 android:id="@+id/space_bar"
33 style="@style/Widget.AppCompat.ProgressBar.Horizontal"
34 android:layout_width="match_parent"
35 android:layout_height="wrap_content"
36 android:paddingTop="@dimen/drawer_margin_large"
37 android:paddingBottom="@dimen/drawer_margin_large"
38 android:paddingStart="@dimen/drawer_margin_large"
39 android:paddingEnd="@dimen/drawer_margin_large" />
40
41 </merge>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698