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

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

Issue 2751583002: 🏡 Show correct BottomSheetContent toolbar when contents swapped (Closed)
Patch Set: [Home] Show correct BottomSheetContent toolbar when contents swapped 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/bottom_control_container.xml
diff --git a/chrome/android/java/res/layout/bottom_control_container.xml b/chrome/android/java/res/layout/bottom_control_container.xml
index 9f45f2a450a961d1be1f46b1a36606e2a7d89462..405c59ae20b1b1e227f95a24147d11da8bcad845 100644
--- a/chrome/android/java/res/layout/bottom_control_container.xml
+++ b/chrome/android/java/res/layout/bottom_control_container.xml
@@ -19,6 +19,7 @@
android:id="@+id/toolbar_container"
android:layout_width="match_parent"
android:layout_height="wrap_content">
+
<ImageView
android:id="@+id/bottom_toolbar_shadow"
android:layout_width="match_parent"
@@ -27,11 +28,18 @@
android:scaleType="fitXY"
android:scaleY="-1"
android:contentDescription="@null" />
- <ViewStub
- android:id="@+id/toolbar_stub"
+
+ <FrameLayout
+ android:id="@+id/toolbar_holder"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_height_no_shadow"
Theresa 2017/03/14 16:29:43 This will change to bottom_control_container_heigh
- android:layout_marginTop="@dimen/toolbar_shadow_height" />
+ android:layout_marginTop="@dimen/toolbar_shadow_height" >
+ <ViewStub
+ android:id="@+id/toolbar_stub"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
+ </FrameLayout>
+
<ViewStub
android:id="@+id/find_toolbar_stub"
android:inflatedId="@+id/find_toolbar"

Powered by Google App Engine
This is Rietveld 408576698