blob: 8b5fe9eab3fec6549030666303e3e134a66a03c5 [file] [log] [blame]
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guy15b8ec62010-01-08 15:06:43 -080018 android:layout_height="match_parent"
19 android:layout_width="match_parent"
Leon Scroggins0a64ba52009-09-08 15:35:33 -040020 android:orientation="vertical"
21 android:background="@color/black"
22 >
23 <RelativeLayout
24 style="?android:attr/windowTitleBackgroundStyle"
Romain Guy15b8ec62010-01-08 15:06:43 -080025 android:layout_width="match_parent"
Leon Scroggins0a64ba52009-09-08 15:35:33 -040026 android:layout_height="?android:attr/windowTitleSize"
27 >
28 <TextView android:id="@android:id/title"
29 style="?android:attr/windowTitleStyle"
Romain Guy15b8ec62010-01-08 15:06:43 -080030 android:layout_width="match_parent"
31 android:layout_height="match_parent"
Leon Scroggins0a64ba52009-09-08 15:35:33 -040032 android:background="@null"
33 android:fadingEdge="horizontal"
34 android:gravity="center_vertical"
35 android:text="@string/active_tabs"
36 />
37 </RelativeLayout>
38 <ListView android:id="@+id/list"
Romain Guy15b8ec62010-01-08 15:06:43 -080039 android:layout_width="match_parent"
Leon Scroggins0a64ba52009-09-08 15:35:33 -040040 android:layout_height="0dip"
41 android:layout_weight="1"
42 android:cacheColorHint="@color/black"
43 />
44</LinearLayout>