blob: 1eb539662c80300c6f5178d68a9112541e56129d [file] [log] [blame]
Chris Wren3a59d6e2012-03-30 18:28:14 -04001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2012 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<com.android.internal.widget.SizeAdaptiveLayout
17 xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:internal="http://schemas.android.com/apk/prv/res/android"
19 android:id="@+id/three_way_multi"
20 android:layout_width="match_parent"
21 android:layout_height="64dp" >
22
23 <include
24 android:id="@+id/one_u"
25 layout="@layout/size_adaptive_one_u"
26 android:layout_width="fill_parent"
27 android:layout_height="64dp"
28 internal:layout_minHeight="64dp"
29 internal:layout_maxHeight="64dp"
30 />
31
32 <include
33 android:id="@+id/two_u"
34 layout="@layout/size_adaptive_four_u"
35 android:layout_width="fill_parent"
36 android:layout_height="128dp"
37 internal:layout_minHeight="65dp"
38 internal:layout_maxHeight="128dp"/>
39
40 <include
41 android:id="@+id/four_u"
42 layout="@layout/size_adaptive_four_u"
43 android:layout_width="fill_parent"
44 android:layout_height="256dp"
45 internal:layout_minHeight="129dp"
46 internal:layout_maxHeight="unbounded"/>
47
48</com.android.internal.widget.SizeAdaptiveLayout>