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

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

Issue 2959853002: Adding smarter resizing logic for the context menu on orientation changes (Closed)
Patch Set: comments Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/java/res/layout/tabular_context_menu_row.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2017 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
6 xmlns:tools="http://schemas.android.com/tools" 6 xmlns:tools="http://schemas.android.com/tools"
7 android:id="@+id/content_layer" 7 android:id="@+id/content_layer"
8 android:layout_width="match_parent" 8 android:layout_width="match_parent"
9 android:layout_height="match_parent" 9 android:layout_height="match_parent"
10 android:minWidth="280dp" 10 android:minWidth="280dp"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 android:visibility="gone"/> 47 android:visibility="gone"/>
48 </LinearLayout> 48 </LinearLayout>
49 <View 49 <View
50 android:id="@+id/context_divider" 50 android:id="@+id/context_divider"
51 android:layout_width="match_parent" 51 android:layout_width="match_parent"
52 android:layout_height="1dp" 52 android:layout_height="1dp"
53 android:background="#1e000000"/> 53 android:background="#1e000000"/>
54 <ListView 54 <ListView
55 android:id="@+id/selectable_items" 55 android:id="@+id/selectable_items"
56 android:layout_width="match_parent" 56 android:layout_width="match_parent"
57 android:layout_height="wrap_content" 57 android:layout_height="0dp"
58 android:layout_weight="1"
58 android:paddingTop="8dp" 59 android:paddingTop="8dp"
59 android:paddingBottom="8dp" 60 android:paddingBottom="8dp"
60 android:dividerHeight="0dp" 61 android:dividerHeight="0dp"
61 android:divider="@null"/> 62 android:divider="@null"/>
62 </LinearLayout> 63 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/layout/tabular_context_menu_row.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698