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

Unified Diff: chrome/android/java/res/layout/download_main.xml

Issue 2143303002: [Downloads] Expose basic download history to UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning up the interface Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/download_main.xml
diff --git a/chrome/android/java/res/layout/download_main.xml b/chrome/android/java/res/layout/download_main.xml
index dd75c3a666e0ce9828bca7fff3c35ad334f21277..8ee54ecc60f2a6b7c4ed91c89a6ba959597d9529 100644
--- a/chrome/android/java/res/layout/download_main.xml
+++ b/chrome/android/java/res/layout/download_main.xml
@@ -22,8 +22,16 @@
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true"
- android:background="@color/appbar_background" >
- </org.chromium.chrome.browser.download.ui.DownloadManagerToolbar>
+ android:background="@color/appbar_background" />
+
+ <android.support.v7.widget.RecyclerView
+ android:id="@+id/recycler_view"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_below="@id/action_bar"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentStart="true"
+ android:layout_alignParentEnd="true" />
<org.chromium.chrome.browser.widget.FadingShadowView
android:id="@+id/shadow"
@@ -31,7 +39,6 @@
android:layout_height="10dp"
android:layout_below="@id/action_bar" />
- <!-- Insert RecyclerView here for showing items (or lack thereof). -->
</RelativeLayout>
<!-- NAVIGATION DRAWER

Powered by Google App Engine
This is Rietveld 408576698