1 <?xml version="1.0" encoding="utf-8"?>
3 <!-- Copyright 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
9 <org.chromium.content_shell.Shell
10 xmlns:android="http://schemas.android.com/apk/res/android"
11 android:id="@+id/container"
12 android:layout_width="match_parent"
13 android:layout_height="match_parent"
14 android:orientation="vertical" >
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_reload_button"
21 android:layout_width="38dp"
22 android:layout_height="38dp"
23 android:src="@android:drawable/ic_menu_close_clear_cancel"
24 android:scaleType="centerCrop"
25 android:contentDescription="@null" />
26 <EditText android:id="@+id/url"
27 android:layout_width="0dp"
28 android:layout_height="wrap_content"
29 android:layout_weight="1"
30 android:gravity="bottom"
31 android:textSize="18sp"
32 android:singleLine="true"
33 android:selectAllOnFocus="true"
34 android:hint="@string/url_hint"
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 android:contentDescription="@null" />
43 <ImageButton android:id="@+id/next"
44 android:layout_width="38dp"
45 android:layout_height="38dp"
46 android:src="@android:drawable/ic_media_next"
47 android:scaleType="center"
48 android:contentDescription="@null" />
50 <FrameLayout android:id="@+id/contentview_holder"
51 android:layout_width="match_parent"
52 android:layout_height="0dp"
53 android:layout_weight="1" />
54 </org.chromium.content_shell.Shell>