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

Unified Diff: blimp/client/core/resources/android/java/res/layout/text_input_popup.xml

Issue 2431653004: Setup Blimp internal string resources. (Closed)
Patch Set: Added some recent blimp java xml file. Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698