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

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

Issue 2751333006: Create the base Custom Context Menu Dialog. (Closed)
Patch Set: git rebase Created 3 years, 8 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
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
4 found in the LICENSE file. -->
5 <LinearLayout
6 xmlns:android="http://schemas.android.com/apk/res/android"
7 android:id="@+id/content_layer"
8 android:layout_width="match_parent"
9 android:layout_height="match_parent"
10 android:minWidth="280dp"
11 android:orientation="vertical">
12 <TextView
13 android:id="@+id/context_header_text"
14 android:layout_width="match_parent"
15 android:layout_height="wrap_content"
16 android:layout_marginTop="20dp"
17 android:layout_marginBottom="10dp"
18 android:layout_marginStart="20dp"
19 android:layout_marginEnd="20dp"
20 android:gravity="center"
21 android:maxLines="1"
22 android:textSize="13sp"
23 android:textStyle="bold"
24 android:ellipsize="end"
25 android:visibility="gone"/>
26 <View
27 android:id="@+id/context_divider"
28 android:layout_width="match_parent"
29 android:layout_height="1dp"
30 android:background="#1e000000"/>
31 <ListView
32 android:id="@+id/selectable_items"
33 android:layout_width="match_parent"
34 android:layout_height="wrap_content"
35 android:paddingTop="8dp"
36 android:paddingBottom="8dp"
37 android:dividerHeight="0dp"
38 android:divider="@null"/>
39 </LinearLayout>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/tabular_context_menu.xml ('k') | 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