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

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

Issue 14752024: [Android] [RTL] Convert Left/Right attributes to Start/End attributes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 3
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:layout_height="fill_parent" 9 android:layout_height="fill_parent"
10 android:layout_width="fill_parent" 10 android:layout_width="fill_parent"
11 android:background="#FFF" 11 android:background="#FFF"
12 android:orientation="horizontal"> 12 android:orientation="horizontal">
13 <TextView android:id="@+id/autofill_label" 13 <TextView android:id="@+id/autofill_label"
14 android:layout_alignParentRight="true" 14 android:layout_alignParentEnd="true"
15 android:layout_width="wrap_content" 15 android:layout_width="wrap_content"
16 android:layout_height="fill_parent" 16 android:layout_height="fill_parent"
17 android:padding="5dp" 17 android:padding="5dp"
18 android:textSize="18sp" 18 android:textSize="18sp"
19 android:textColor="#CCC" 19 android:textColor="#CCC"
20 android:ellipsize="end" 20 android:ellipsize="end"
21 android:singleLine="true"/> 21 android:singleLine="true"/>
22 <TextView android:id="@+id/autofill_name" 22 <TextView android:id="@+id/autofill_name"
23 android:layout_alignParentLeft="true" 23 android:layout_alignParentStart="true"
24 android:layout_width="wrap_content" 24 android:layout_width="wrap_content"
25 android:layout_height="fill_parent" 25 android:layout_height="fill_parent"
26 android:padding="5dp" 26 android:padding="5dp"
27 android:background="#FFF" 27 android:background="#FFF"
28 android:textSize="18sp" 28 android:textSize="18sp"
29 android:textColor="#000" 29 android:textColor="#000"
30 android:ellipsize="end" 30 android:ellipsize="end"
31 android:singleLine="true"/> 31 android:singleLine="true"/>
32 </RelativeLayout> 32 </RelativeLayout>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/autofill_menu_item.xml ('k') | chrome/android/java/res/layout/js_modal_dialog.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698