Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / core_shell / res / layout / testshell_activity.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!-- Copyright (c) 2013-2014 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         android:background="@drawable/progress">
20         <ImageButton android:id="@+id/stop"
21             android:layout_width="38dp"
22             android:layout_height="38dp"
23             android:src="@android:drawable/ic_menu_close_clear_cancel"
24             android:scaleType="center" />
25         <EditText android:id="@+id/url"
26             android:layout_width="0dp"
27             android:layout_height="wrap_content"
28             android:layout_weight="1"
29             android:gravity="bottom"
30             android:textSize="18sp"
31             android:autoText="true"
32             android:capitalize="sentences"
33             android:singleLine="true"
34             android:selectAllOnFocus="true"
35             android:inputType="textUri"
36             android:imeOptions="actionGo" />
37         <ImageButton android:id="@+id/prev"
38             android:layout_width="38dp"
39             android:layout_height="38dp"
40             android:src="@android:drawable/ic_media_previous"
41             android:scaleType="center" />
42         <ImageButton android:id="@+id/next"
43             android:layout_width="38dp"
44             android:layout_height="38dp"
45             android:src="@android:drawable/ic_media_next"
46             android:scaleType="center" />
47          <ImageButton android:id="@+id/reload"
48             android:layout_width="38dp"
49             android:layout_height="38dp"
50             android:src="@android:drawable/ic_menu_rotate"
51             android:scaleType="center" />
52     </LinearLayout>
53     
54     <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
55     android:id="@+id/pager"
56     android:layout_width="match_parent"
57     android:layout_height="match_parent" />
58 </LinearLayout>
59