Upstream version 6.35.131.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / sample / res / layout / pause_timers_layout.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3      Copyright (c) 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 xmlns:android="http://schemas.android.com/apk/res/android"
10     android:layout_width="match_parent"
11     android:layout_height="match_parent"
12     android:orientation="vertical" >
13
14     <LinearLayout
15         android:id="@+id/toolbar"
16         android:layout_width="match_parent"
17         android:layout_height="wrap_content"
18         android:orientation="horizontal" >
19
20         <ImageButton
21             android:id="@+id/pause"
22             android:layout_width="38dp"
23             android:layout_height="38dp"
24             android:scaleType="center"
25             android:src="@android:drawable/ic_media_pause" />
26     </LinearLayout>
27
28     <org.xwalk.core.XWalkView
29         android:id="@+id/xwalkview"
30         android:layout_width="match_parent"
31         android:layout_height="match_parent" >
32     </org.xwalk.core.XWalkView>
33
34 </LinearLayout>