blob: 3f84d46a5eb6ba6ce8f26b0c4a4d381d208bd7ba [file] [log] [blame]
Phil Dubach5d79c6f2009-06-05 18:34:01 -07001<?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<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guy0cbe49a2010-01-08 15:05:22 -080018 android:layout_width="match_parent"
19 android:layout_height="match_parent">
Phil Dubach5d79c6f2009-06-05 18:34:01 -070020
21 <SlidingDrawer
22 android:id="@+id/drawer"
Romain Guy0cbe49a2010-01-08 15:05:22 -080023 android:layout_width="match_parent"
24 android:layout_height="match_parent"
Phil Dubach5d79c6f2009-06-05 18:34:01 -070025 android:animateOnClick="false"
26
27 android:handle="@+id/handle"
28 android:content="@+id/content">
29
30 <ImageView
31 android:id="@id/handle"
32 android:background="#FF00FF00"
33 android:layout_width="88dip"
34 android:layout_height="44dip" />
35
36 <TextView
37 android:id="@id/content"
38 android:background="#FF0000FF"
Romain Guy0cbe49a2010-01-08 15:05:22 -080039 android:layout_width="match_parent"
40 android:layout_height="match_parent"
Phil Dubach5d79c6f2009-06-05 18:34:01 -070041 android:text="@string/hello_world" />
42
43 </SlidingDrawer>
44
45</RelativeLayout>