| Index: blimp/client/app/android/java/res/layout/text_input_popup.xml
|
| diff --git a/blimp/client/app/android/java/res/layout/text_input_popup.xml b/blimp/client/app/android/java/res/layout/text_input_popup.xml
|
| index 456b2c10edc7b4a7ebc87e779ae92a21c76d5212..bfd4635e53395add757f3f1c83f190b52a948bc3 100644
|
| --- a/blimp/client/app/android/java/res/layout/text_input_popup.xml
|
| +++ b/blimp/client/app/android/java/res/layout/text_input_popup.xml
|
| @@ -3,16 +3,35 @@
|
| Use of this source code is governed by a BSD-style license that can be
|
| found in the LICENSE file.
|
| -->
|
| -<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
| - android:layout_width="wrap_content"
|
| - android:layout_height="wrap_content"
|
| - android:gravity="start">
|
| +<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:textSize="18sp"
|
| - android:singleLine="true"
|
| - android:layout_marginTop="10dp"/>
|
| -</FrameLayout>
|
| + 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>
|
|
|