blob: e2396228983f824058bb4545e1459ac45c39537c [file] [log] [blame]
Ben Murdochbff2d602009-07-01 20:19:05 +01001<?xml version="1.0" encoding="utf-8"?>
2
3<!-- Copyright (C) 2009 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 android:id="@+id/error_console_view_group_id"
Romain Guy15b8ec62010-01-08 15:06:43 -080020 android:layout_width="match_parent"
21 android:layout_height="match_parent"
Ben Murdochbff2d602009-07-01 20:19:05 +010022 android:orientation="vertical"
23 android:background="#000000">
24
25 <TextView android:id="@+id/error_console_header_id"
26 android:text="@string/error_console_header_text_minimized"
Romain Guy15b8ec62010-01-08 15:06:43 -080027 android:layout_width="match_parent"
Ben Murdochbff2d602009-07-01 20:19:05 +010028 android:layout_height="wrap_content"
29 android:paddingTop="2dip"
30 android:paddingBottom="2dip"
31 android:paddingLeft="5dip"
32 style="?android:attr/listSeparatorTextViewStyle"
33 android:visibility="gone"
34 />
35
36 <view class="com.android.browser.ErrorConsoleView$ErrorConsoleListView"
37 android:id="@+id/error_console_list_id"
Romain Guy15b8ec62010-01-08 15:06:43 -080038 android:layout_width="match_parent"
Ben Murdochbff2d602009-07-01 20:19:05 +010039 android:layout_height="200dip"
40 android:visibility="gone"
41 android:layout_weight="1"
42 android:cacheColorHint="#000000"
43 />
44
45 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
46 android:id="@+id/error_console_eval_view_group_id"
Romain Guy15b8ec62010-01-08 15:06:43 -080047 android:layout_width="match_parent"
Ben Murdochbff2d602009-07-01 20:19:05 +010048 android:layout_height="wrap_content"
49 android:visibility="gone">
50
51 <EditText android:id="@+id/error_console_eval_text_id"
52 android:hint="@string/error_console_eval_text_hint"
53 android:layout_height="wrap_content"
54 android:scrollHorizontally="true"
55 android:inputType="text"
56 android:layout_width="0dip"
57 android:layout_gravity="left"
58 android:layout_weight="1.0"
59 />
60
61 <Button android:id="@+id/error_console_eval_button_id"
62 android:text="@string/error_console_eval_button_text"
63 android:layout_width="wrap_content"
64 android:layout_height="wrap_content"
65 />
66 </LinearLayout>
67</LinearLayout>