Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 1 | <?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 Guy | 15b8ec6 | 2010-01-08 15:06:43 -0800 | [diff] [blame^] | 20 | android:layout_width="match_parent" |
| 21 | android:layout_height="match_parent" |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 22 | 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 Guy | 15b8ec6 | 2010-01-08 15:06:43 -0800 | [diff] [blame^] | 27 | android:layout_width="match_parent" |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 28 | 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 Guy | 15b8ec6 | 2010-01-08 15:06:43 -0800 | [diff] [blame^] | 38 | android:layout_width="match_parent" |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 39 | 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 Guy | 15b8ec6 | 2010-01-08 15:06:43 -0800 | [diff] [blame^] | 47 | android:layout_width="match_parent" |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 48 | 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> |