1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?xml version="1.0" encoding="utf-8"?>
- <!-- Copyright (C) 2009 The Android Open Source Project
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/error_console_view_group_id"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:background="#000000">
- <TextView android:id="@+id/error_console_header_id"
- android:text="@string/error_console_header_text_minimized"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="2dip"
- android:paddingBottom="2dip"
- android:paddingLeft="5dip"
- style="?android:attr/listSeparatorTextViewStyle"
- android:visibility="gone"
- />
- <view class="com.android.browser.ErrorConsoleView$ErrorConsoleListView"
- android:id="@+id/error_console_list_id"
- android:layout_width="match_parent"
- android:layout_height="200dip"
- android:visibility="gone"
- android:layout_weight="1"
- android:cacheColorHint="#000000"
- />
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/error_console_eval_view_group_id"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:visibility="gone">
- <EditText android:id="@+id/error_console_eval_text_id"
- android:hint="@string/error_console_eval_text_hint"
- android:layout_height="wrap_content"
- android:scrollHorizontally="true"
- android:inputType="text"
- android:layout_width="0dip"
- android:layout_gravity="left"
- android:layout_weight="1.0"
- />
- <Button android:id="@+id/error_console_eval_button_id"
- android:text="@string/error_console_eval_button_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- </LinearLayout>
- </LinearLayout>
|