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

Side by Side Diff: blimp/client/app/android/java/res/layout/text_input_popup.xml

Issue 2542083004: Make //blimp/client/app a real embedder of //blimp/client/public (Closed)
Patch Set: Fix findbugs issue Created 4 years 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 2016 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 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 android:layout_width="match_parent"
8 android:layout_height="wrap_content">
9 <TextView
10 android:id="@+id/label"
11 android:layout_width="match_parent"
12 android:layout_height="wrap_content"
13 android:layout_marginTop="17dp"
14 android:layout_marginStart="24dp"
15 android:fontFamily="sans-serif-medium"
16 android:textColor="@color/disabled_text_color"
17 android:textSize="12sp"/>
18 <org.chromium.blimp.core.contents.input.ImeEditText
19 android:id="@+id/ime_edit_text"
20 android:inputType="text"
21 android:layout_width="match_parent"
22 android:layout_height="wrap_content"
23 android:layout_below="@+id/label"
24 android:layout_marginTop= "4dp"
25 android:layout_marginStart="24dp"
26 android:layout_marginEnd="24dp"
27 android:fontFamily="sans-serif"
28 android:textSize="16sp"
29 android:singleLine="true"/>
30 <org.chromium.blimp.core.contents.input.WebInputConfirmationPanel
31 android:id="@+id/submit_panel"
32 android:layout_width="match_parent"
33 android:layout_height="wrap_content"
34 android:layout_below="@+id/ime_edit_text"
35 android:layout_marginBottom="12dp"
36 android:layout_marginTop="19dp"/>
37 </RelativeLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698