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

Side by Side Diff: content/public/android/java/res/layout-v21/text_edit_suggestion_item.xml

Issue 2650113004: [WIP] Add support for Android SuggestionSpans when editing text (Closed)
Patch Set: Uploading the latest version from my repo so I can reference it 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
6 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
7 android:textAppearance="@android:style/TextAppearance.Material.Body1"
8 android:textColor="?android:attr/textColorSecondary"
9 android:drawablePadding="8dip"
10 android:gravity="start|center_vertical"
11 android:layout_gravity="start|center_vertical"
12 android:layout_height="48dip"
13 android:layout_width="match_parent"
14 android:paddingBottom="8dip"
15 android:paddingEnd="16dip"
16 android:paddingStart="16dip"
17 android:paddingTop="8dip"
18 android:singleLine="true"
19 android:textSize="14sp" />
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698