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

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

Issue 2853583002: 🏠 Add expand button and flag to enable it (Closed)
Patch Set: fix screenshot 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 <org.chromium.chrome.browser.widget.bottomsheet.BottomSheet 6 <org.chromium.chrome.browser.widget.bottomsheet.BottomSheet
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/bottom_sheet" 8 android:id="@+id/bottom_sheet"
9 android:layout_width="match_parent" 9 android:layout_width="match_parent"
10 android:layout_height="wrap_content" > 10 android:layout_height="wrap_content" >
(...skipping 15 matching lines...) Expand all
26 android:layout_width="match_parent" 26 android:layout_width="match_parent"
27 android:layout_height="@dimen/toolbar_shadow_height" 27 android:layout_height="@dimen/toolbar_shadow_height"
28 android:src="@drawable/toolbar_shadow" 28 android:src="@drawable/toolbar_shadow"
29 android:scaleType="fitXY" 29 android:scaleType="fitXY"
30 android:scaleY="-1" 30 android:scaleY="-1"
31 android:contentDescription="@null" /> 31 android:contentDescription="@null" />
32 32
33 <FrameLayout 33 <FrameLayout
34 android:id="@+id/toolbar_holder" 34 android:id="@+id/toolbar_holder"
35 android:layout_width="match_parent" 35 android:layout_width="match_parent"
36 android:layout_height="@dimen/bottom_control_container_height" 36 android:layout_height="match_parent"
37 android:layout_marginTop="@dimen/toolbar_shadow_height" > 37 android:layout_marginTop="@dimen/toolbar_shadow_height" >
38 38
39 <ViewStub 39 <ViewStub
40 android:id="@+id/toolbar_stub" 40 android:id="@+id/toolbar_stub"
41 android:layout_width="match_parent" 41 android:layout_width="match_parent"
42 android:layout_height="match_parent" /> 42 android:layout_height="match_parent" />
43 43
44 </FrameLayout> 44 </FrameLayout>
45 45
46 <ImageView 46 <ImageView
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 <ImageView 79 <ImageView
80 android:id="@+id/toolbar_shadow" 80 android:id="@+id/toolbar_shadow"
81 android:src="@drawable/bottom_toolbar_shadow" 81 android:src="@drawable/bottom_toolbar_shadow"
82 android:layout_width="match_parent" 82 android:layout_width="match_parent"
83 android:layout_height="wrap_content" 83 android:layout_height="wrap_content"
84 android:scaleType="fitXY" 84 android:scaleType="fitXY"
85 android:contentDescription="@null" /> 85 android:contentDescription="@null" />
86 86
87 </org.chromium.chrome.browser.widget.bottomsheet.BottomSheet> 87 </org.chromium.chrome.browser.widget.bottomsheet.BottomSheet>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698