xref: /aosp_15_r20/development/samples/browseable/MultiWindowPlayground/res/values/strings.xml (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1*90c8c64dSAndroid Build Coastguard Worker<!--
2*90c8c64dSAndroid Build Coastguard Worker  Copyright (C) 2016 The Android Open Source Project
3*90c8c64dSAndroid Build Coastguard Worker
4*90c8c64dSAndroid Build Coastguard Worker  Licensed under the Apache License, Version 2.0 (the "License");
5*90c8c64dSAndroid Build Coastguard Worker  you may not use this file except in compliance with the License.
6*90c8c64dSAndroid Build Coastguard Worker  You may obtain a copy of the License at
7*90c8c64dSAndroid Build Coastguard Worker
8*90c8c64dSAndroid Build Coastguard Worker       http://www.apache.org/licenses/LICENSE-2.0
9*90c8c64dSAndroid Build Coastguard Worker
10*90c8c64dSAndroid Build Coastguard Worker  Unless required by applicable law or agreed to in writing, software
11*90c8c64dSAndroid Build Coastguard Worker  distributed under the License is distributed on an "AS IS" BASIS,
12*90c8c64dSAndroid Build Coastguard Worker  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*90c8c64dSAndroid Build Coastguard Worker  See the License for the specific language governing permissions and
14*90c8c64dSAndroid Build Coastguard Worker  limitations under the License.
15*90c8c64dSAndroid Build Coastguard Worker  -->
16*90c8c64dSAndroid Build Coastguard Worker
17*90c8c64dSAndroid Build Coastguard Worker<resources>
18*90c8c64dSAndroid Build Coastguard Worker    <string name="app_name">MultiWindow Playground</string>
19*90c8c64dSAndroid Build Coastguard Worker    <string name="introduction_title">Multiwindow Playground</string>
20*90c8c64dSAndroid Build Coastguard Worker    <string name="sample_introduction">This sample demonstrates the use of the multi-window API
21*90c8c64dSAndroid Build Coastguard Worker        available in Android N.\nFirst, switch this app into
22*90c8c64dSAndroid Build Coastguard Worker        <b>split-screen mode</b>
23*90c8c64dSAndroid Build Coastguard Worker        (for example by long-pressing the recents button). Each button below starts a new activity
24*90c8c64dSAndroid Build Coastguard Worker        with special flags.\n<b>See the files MainActivity.java and AndroidManifest.xml for
25*90c8c64dSAndroid Build Coastguard Worker        implementation details.</b>
26*90c8c64dSAndroid Build Coastguard Worker    </string>
27*90c8c64dSAndroid Build Coastguard Worker    <string name="sample_freeform_introduction">The buttons below demonstrate features only
28*90c8c64dSAndroid Build Coastguard Worker        available in <b>free-form multi-window mode</b>.</string>
29*90c8c64dSAndroid Build Coastguard Worker    <string name="start_default">Start basic, default Activity</string>
30*90c8c64dSAndroid Build Coastguard Worker    <string name="start_unresizable">Start unresizable Activity</string>
31*90c8c64dSAndroid Build Coastguard Worker    <string name="start_adjacent">Start Activity adjacent</string>
32*90c8c64dSAndroid Build Coastguard Worker    <string name="start_minimum">Start Activity with minimum size</string>
33*90c8c64dSAndroid Build Coastguard Worker    <string name="start_bounds">Start Activity with launch bounds</string>
34*90c8c64dSAndroid Build Coastguard Worker    <string name="start_custom_activity">Start activity that handles configuration changes.</string>
35*90c8c64dSAndroid Build Coastguard Worker
36*90c8c64dSAndroid Build Coastguard Worker    <string name="activity_description_basic">This Activity was launched in a new task without any
37*90c8c64dSAndroid Build Coastguard Worker        additional flags or options.
38*90c8c64dSAndroid Build Coastguard Worker    </string>
39*90c8c64dSAndroid Build Coastguard Worker    <string name="activity_description_unresizable">This activity is set as unresizable in the
40*90c8c64dSAndroid Build Coastguard Worker        AndroidManifest. This is done by setting the <i>resizeableActivity</i> property to
41*90c8c64dSAndroid Build Coastguard Worker        <i>false</i> for this activity.
42*90c8c64dSAndroid Build Coastguard Worker    </string>
43*90c8c64dSAndroid Build Coastguard Worker    <string name="activity_adjacent_description">This activity was launched with the flag
44*90c8c64dSAndroid Build Coastguard Worker        <b>Intent.FLAG_ACTIVITY_LAUNCH_ADJACENT</b>.\n\nIf possible, it has been launched into the
45*90c8c64dSAndroid Build Coastguard Worker        adjacent area from the activity that started it.\nThis is only a hint to the system. For
46*90c8c64dSAndroid Build Coastguard Worker        example - if the application is not in split-screen mode, it will be launched full-screen.
47*90c8c64dSAndroid Build Coastguard Worker        If it is launched in the same task as the initial Activity, it will retain its activity
48*90c8c64dSAndroid Build Coastguard Worker        properties and its location.
49*90c8c64dSAndroid Build Coastguard Worker    </string>
50*90c8c64dSAndroid Build Coastguard Worker    <string name="activity_custom_description">This activity handles configuration changes
51*90c8c64dSAndroid Build Coastguard Worker        itself.\n\nIn the AndroidManifest, this activity has been configured to receive callbacks
52*90c8c64dSAndroid Build Coastguard Worker        for <b>screenSize|smallestScreenSize|screenLayout|orientation</b>
53*90c8c64dSAndroid Build Coastguard Worker        changes.\nTry resizing this activity to different sizes to see which configuration
54*90c8c64dSAndroid Build Coastguard Worker        properties change.
55*90c8c64dSAndroid Build Coastguard Worker    </string>
56*90c8c64dSAndroid Build Coastguard Worker    <string name="activity_bounds_description">This activity has been launched with a launch bounds
57*90c8c64dSAndroid Build Coastguard Worker        set in its intent. The bounds define the area into which the activity should be launched.
58*90c8c64dSAndroid Build Coastguard Worker        \n\nNote that this flag only applies in free-form mode.
59*90c8c64dSAndroid Build Coastguard Worker    </string>
60*90c8c64dSAndroid Build Coastguard Worker    <string name="activity_minimum_description">This activity has a minimum size.\nIt was launched
61*90c8c64dSAndroid Build Coastguard Worker        into the top/end corner with a a default size of 750dp by 500dp, with a minimum size of 750dp
62*90c8c64dSAndroid Build Coastguard Worker        as defined in its <b>layout attribute in the AndroidManifest definition</b>.
63*90c8c64dSAndroid Build Coastguard Worker        \n\nNote that this Activity was launched in a different task, otherwise the properties from
64*90c8c64dSAndroid Build Coastguard Worker        the Activity that launched this one would have been applied.
65*90c8c64dSAndroid Build Coastguard Worker    </string>
66*90c8c64dSAndroid Build Coastguard Worker</resources>
67