Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / runtime_shell / res / layout / testshell_activity.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!-- Copyright (c) 2013 Intel Corporation. All rights reserved.
4
5      Use of this source code is governed by a BSD-style license that can be
6      found in the LICENSE file.
7  -->
8
9 <LinearLayout android:id="@+id/testshell_activity"
10     xmlns:android="http://schemas.android.com/apk/res/android"
11     android:layout_width="match_parent"
12     android:layout_height="match_parent"
13     android:orientation="vertical">
14
15     <LinearLayout android:id="@+id/toolbar"
16         android:layout_width="match_parent"
17         android:layout_height="wrap_content"
18         android:orientation="horizontal">
19         <EditText android:id="@+id/url"
20             android:layout_width="0dp"
21             android:layout_height="wrap_content"
22             android:layout_weight="1"
23             android:gravity="bottom"
24             android:textSize="18sp"
25             android:autoText="true"
26             android:capitalize="sentences"
27             android:singleLine="true"
28             android:selectAllOnFocus="true"
29             android:inputType="textUri"
30             android:imeOptions="actionGo" />
31     </LinearLayout>
32
33     <org.xwalk.runtime.XWalkRuntimeView android:id="@+id/content_container"
34         android:layout_width="match_parent"
35         android:layout_height="match_parent">
36     </org.xwalk.runtime.XWalkRuntimeView>
37
38 </LinearLayout>
39