OSDN Git Service

Extract support lib samples out of ApiDemos and in to their own app.
[android-x86/development.git] / samples / Support4Demos / res / layout / fragment_arguments_support.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2011 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 <!-- Top-level content view for the simple fragment sample. -->
18
19 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
20     android:orientation="vertical" android:padding="4dip"
21     android:gravity="center_horizontal"
22     android:layout_width="match_parent" android:layout_height="match_parent">
23
24     <TextView
25             android:id="@+id/text"
26             android:layout_width="wrap_content"
27             android:layout_height="wrap_content"
28             android:layout_weight="0"
29             android:padding="4dip"
30             android:layout_gravity="center_vertical|center_horizontal"
31             android:gravity="top|center_horizontal"
32             android:textAppearance="?android:attr/textAppearanceMedium"
33             android:text="@string/fragment_arguments_msg" />
34
35     <LinearLayout android:orientation="horizontal" android:padding="4dip"
36         android:layout_width="match_parent" android:layout_height="wrap_content">
37
38 <!-- BEGIN_INCLUDE(from_attributes) -->
39         <fragment class="com.example.android.supportv4.app.FragmentArgumentsSupport$MyFragment"
40                 android:id="@+id/embedded"
41                 android:layout_width="0px" android:layout_height="wrap_content"
42                 android:layout_weight="1"
43                 android:label="@string/fragment_arguments_embedded" />
44 <!-- END_INCLUDE(from_attributes) -->
45
46         <FrameLayout
47                 android:id="@+id/created"
48                 android:layout_width="0px"
49                 android:layout_height="wrap_content"
50                 android:layout_weight="1" />
51
52     </LinearLayout>
53
54 </LinearLayout>