blob: 66e98b21bb24c7692f9ae2f00fca85c2870c2108 [file] [log] [blame]
The Android Open Source Projectf8057102009-03-15 16:47:16 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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"
18 android:id="@+id/linearlayout"
Brian Muramatsu61d80982011-11-29 13:08:13 -080019 android:orientation="vertical"
Romain Guy0cbe49a2010-01-08 15:05:22 -080020 android:layout_width="match_parent"
The Android Open Source Projectf8057102009-03-15 16:47:16 -070021 android:layout_height="wrap_content">
22
Svetoslav Ganov22376ce2013-01-08 15:26:31 -080023 <View android:id="@+id/view1"
Romain Guy0cbe49a2010-01-08 15:05:22 -080024 android:layout_width="match_parent"
Svetoslav Ganov22376ce2013-01-08 15:26:31 -080025 android:layout_height="10dip"
26 android:focusable="true"/>
The Android Open Source Projectf8057102009-03-15 16:47:16 -070027
Svetoslav Ganov22376ce2013-01-08 15:26:31 -080028 <View android:id="@+id/view2"
Romain Guy0cbe49a2010-01-08 15:05:22 -080029 android:layout_width="match_parent"
Svetoslav Ganov22376ce2013-01-08 15:26:31 -080030 android:layout_height="10dip"
31 android:focusable="true"/>
The Android Open Source Projectf8057102009-03-15 16:47:16 -070032
33 <Button android:id="@+id/button1"
Svetoslav Ganov22376ce2013-01-08 15:26:31 -080034 android:layout_width="wrap_content"
35 android:layout_height="10dip" />
The Android Open Source Projectf8057102009-03-15 16:47:16 -070036
37</LinearLayout>
38