Chromium Code Reviews| 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 |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..821ce26c03e228a2493b1572a80bbc2c343a8ed6 |
| --- /dev/null |
| +++ b/blimp/client/app/android/java/res/layout/text_input_popup.xml |
| @@ -0,0 +1,16 @@ |
| +<?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. |
| +--> |
| +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| + android:gravity="start"> |
| + <org.chromium.blimp.input.ImeEditText |
| + android:id="@+id/edit_text" |
|
David Trainor- moved to gerrit
2016/08/22 21:25:24
Should we make this id a bit more specific?
shaktisahu
2016/08/23 17:35:14
Done.
|
| + android:inputType="text" |
| + android:layout_width="match_parent" |
| + android:layout_height="wrap_content" |
| + android:textSize="18sp" |
| + android:singleLine="true" |
| + android:layout_marginTop="10dp"/> |
| +</FrameLayout> |