blob: 14a6b39e67783eaa8b48ff0ba4f17a9a0f9c5832 [file] [log] [blame]
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 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<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
18 android:id="@android:id/tabhost"
Romain Guy6304c0b2010-01-08 15:06:49 -080019 android:layout_width="match_parent"
20 android:layout_height="match_parent">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080021
22 <LinearLayout
23 android:orientation="vertical"
Romain Guy6304c0b2010-01-08 15:06:49 -080024 android:layout_width="match_parent"
25 android:layout_height="match_parent">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080026
27 <TabWidget android:id="@android:id/tabs"
Romain Guy6304c0b2010-01-08 15:06:49 -080028 android:layout_width="match_parent"
Evan Millar07addc12009-08-26 10:35:24 -070029 android:layout_height="wrap_content"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080030 />
31
32 <FrameLayout android:id="@android:id/tabcontent"
Romain Guy6304c0b2010-01-08 15:06:49 -080033 android:layout_width="match_parent"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080034 android:layout_height="0dip"
35 android:layout_weight="1"
36 />
37 </LinearLayout>
38</TabHost>
39