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

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

Issue 2780693002: [Home] Toolbar shadow v1 (Closed)
Patch Set: dfalcantara@ review Created 3 years, 9 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/selectable_list_layout.xml
diff --git a/chrome/android/java/res/layout/selectable_list_layout.xml b/chrome/android/java/res/layout/selectable_list_layout.xml
index 0cde7895176942ba920b73b78db2046bd7244704..47f9b9d0c4ed9e41ac9cad127896a70b51526921 100644
--- a/chrome/android/java/res/layout/selectable_list_layout.xml
+++ b/chrome/android/java/res/layout/selectable_list_layout.xml
@@ -9,21 +9,13 @@
android:inflatedId="@+id/action_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
- android:background="@color/appbar_background"
- android:layout_alignParentTop="true" />
-
- <org.chromium.chrome.browser.widget.FadingShadowView
- android:id="@+id/shadow"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_shadow_height"
- android:layout_below="@id/action_bar" />
+ android:background="@color/appbar_background" />
<FrameLayout
android:id="@+id/list_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:layout_alignParentBottom="true"
- android:layout_below="@id/action_bar">
+ android:layout_marginTop="?attr/actionBarSize" >
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
@@ -46,5 +38,12 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" />
- </FrameLayout>
+ </FrameLayout>
+
+ <org.chromium.chrome.browser.widget.FadingShadowView
+ android:id="@+id/shadow"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/action_bar_shadow_height"
+ android:layout_marginTop="?attr/actionBarSize" />
+
</merge>

Powered by Google App Engine
This is Rietveld 408576698