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

Side by Side Diff: chrome/android/java/res/layout/tabular_context_menu_row.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 xmlns:android="http://schemas.android.com/apk/res/android"
6 xmlns:tools="http://schemas.android.com/tools"
7 android:orientation="horizontal"
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:paddingStart="15dp"
11 android:paddingEnd="15dp"
12 android:minHeight="40dp"
13 tools:ignore="UseCompoundDrawables">
14 <ImageView
15 android:id="@+id/context_menu_icon"
16 android:layout_width="20dp"
17 android:layout_height="20dp"
18 android:layout_gravity="center_vertical"
19 android:contentDescription="@null" />
20 <TextView
21 android:id="@+id/context_text"
22 android:layout_width="0dp"
23 android:layout_height="wrap_content"
24 android:layout_gravity="center_vertical"
25 android:layout_marginStart="10dp"
26 android:layout_weight="1"
27 android:textSize="15sp"
28 android:textColor="#dd000000" />
29 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698