blob: 6fadca0e97787a9633fa610ad2cf6e68a1f16bba [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001<?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<!-- Demonstrates using Intent.FLAG_ACTIVITY_REORDER_TO_FRONT.
18 See corresponding Java code com.example.android.apis.app.ReorderOnLaunch.java. -->
19
20<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 android:orientation="vertical"
22 android:padding="4dip"
23 android:gravity="center_horizontal"
Romain Guy74192ea2010-01-08 15:05:33 -080024 android:layout_width="match_parent"
25 android:layout_height="match_parent">
The Android Open Source Project52d4c302009-03-03 19:29:09 -080026
27 <TextView
Romain Guy74192ea2010-01-08 15:05:33 -080028 android:layout_width="match_parent" android:layout_height="wrap_content"
The Android Open Source Project52d4c302009-03-03 19:29:09 -080029 android:layout_weight="0"
30 android:paddingBottom="4dip"
31 android:text="@string/reorder_two_text"/>
32
33 <Button android:id="@+id/reorder_launch_three"
34 android:layout_width="wrap_content" android:layout_height="wrap_content"
35 android:text="@string/reorder_launch_three">
36 </Button>
37
38</LinearLayout>