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

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

Issue 2751333006: Create the base Custom Context Menu Dialog. (Closed)
Patch Set: Updated tests and header 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 unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
Ted C 2017/03/24 04:32:53 tabular_context_menu_row
JJ 2017/03/25 01:40:25 Done.
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 android:orientation="horizontal"
7 android:layout_width="match_parent"
8 android:layout_height="wrap_content"
9 android:paddingStart="15dp"
10 android:paddingEnd="15dp"
11 android:minHeight="40dp">
12 <ImageView
13 android:id="@+id/context_menu_icon"
14 android:layout_width="20dp"
15 android:layout_height="20dp"
16 android:layout_gravity="center_vertical"
17 android:contentDescription="@string/context_menu_row_icon_description" / >
Ted C 2017/03/24 04:32:53 I wouldn't set a content description here (applies
JJ 2017/03/25 01:40:25 Done.
18 <TextView
19 android:id="@+id/context_text"
20 android:layout_width="0dp"
21 android:layout_height="wrap_content"
22 android:layout_gravity="center_vertical"
23 android:layout_marginStart="10dp"
24 android:layout_weight="1"
25 android:textSize="15sp"
26 android:textColor="#dd000000"/>
27 <ImageView
28 android:id="@+id/context_menu_share_icon"
29 android:layout_width="20dp"
30 android:layout_height="20dp"
31 android:layout_gravity="center_vertical"
32 android:contentDescription="@string/context_menu_row_share_icon_descript ion"
33 android:visibility="gone"/>
34 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698