Index: blimp/client/core/resources/android/java/res/layout/text_input_popup.xml |
diff --git a/blimp/client/core/resources/android/java/res/layout/text_input_popup.xml b/blimp/client/core/resources/android/java/res/layout/text_input_popup.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bfd4635e53395add757f3f1c83f190b52a948bc3 |
--- /dev/null |
+++ b/blimp/client/core/resources/android/java/res/layout/text_input_popup.xml |
@@ -0,0 +1,37 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
+<!-- Copyright 2016 The Chromium Authors. All rights reserved. |
+ Use of this source code is governed by a BSD-style license that can be |
+ found in the LICENSE file. |
+--> |
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
+ android:layout_width="match_parent" |
+ android:layout_height="wrap_content"> |
+ <TextView |
+ android:id="@+id/label" |
+ android:layout_width="match_parent" |
+ android:layout_height="wrap_content" |
+ android:layout_marginTop="17dp" |
+ android:layout_marginStart="24dp" |
+ android:fontFamily="sans-serif-medium" |
+ android:textColor="@color/disabled_text_color" |
+ android:textSize="12sp"/> |
+ <org.chromium.blimp.core.contents.input.ImeEditText |
+ android:id="@+id/ime_edit_text" |
+ android:inputType="text" |
+ android:layout_width="match_parent" |
+ android:layout_height="wrap_content" |
+ android:layout_below="@+id/label" |
+ android:layout_marginTop= "4dp" |
+ android:layout_marginStart="24dp" |
+ android:layout_marginEnd="24dp" |
+ android:fontFamily="sans-serif" |
+ android:textSize="16sp" |
+ android:singleLine="true"/> |
+ <org.chromium.blimp.core.contents.input.WebInputConfirmationPanel |
+ android:id="@+id/submit_panel" |
+ android:layout_width="match_parent" |
+ android:layout_height="wrap_content" |
+ android:layout_below="@+id/ime_edit_text" |
+ android:layout_marginBottom="12dp" |
+ android:layout_marginTop="19dp"/> |
+</RelativeLayout> |