Home | History | Annotate | Download | only in values
      1 <!--
      2   Copyright (C) 2016 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 <resources>
     18     <string name="app_name">MultiWindow Playground</string>
     19     <string name="introduction_title">Multiwindow Playground</string>
     20     <string name="sample_introduction">This sample demonstrates the use of the multi-window API
     21         available in Android N.\nFirst, switch this app into
     22         <b>split-screen mode</b>
     23         (for example by long-pressing the recents button). Each button below starts a new activity
     24         with special flags.\n<b>See the files MainActivity.java and AndroidManifest.xml for
     25         implementation details.</b>
     26     </string>
     27     <string name="sample_freeform_introduction">The buttons below demonstrate features only
     28         available in <b>free-form multi-window mode</b>.</string>
     29     <string name="start_default">Start basic, default Activity</string>
     30     <string name="start_unresizable">Start unresizable Activity</string>
     31     <string name="start_adjacent">Start Activity adjacent</string>
     32     <string name="start_minimum">Start Activity with minimum size</string>
     33     <string name="start_bounds">Start Activity with launch bounds</string>
     34     <string name="start_custom_activity">Start activity that handles configuration changes.</string>
     35 
     36     <string name="activity_description_basic">This Activity was launched in a new task without any
     37         additional flags or options.
     38     </string>
     39     <string name="activity_description_unresizable">This activity is set as unresizable in the
     40         AndroidManifest. This is done by setting the <i>resizeableActivity</i> property to
     41         <i>false</i> for this activity.
     42     </string>
     43     <string name="activity_adjacent_description">This activity was launched with the flag
     44         <b>Intent.FLAG_ACTIVITY_LAUNCH_ADJACENT</b>.\n\nIf possible, it has been launched into the
     45         adjacent area from the activity that started it.\nThis is only a hint to the system. For
     46         example - if the application is not in split-screen mode, it will be launched full-screen.
     47         If it is launched in the same task as the initial Activity, it will retain its activity
     48         properties and its location.
     49     </string>
     50     <string name="activity_custom_description">This activity handles configuration changes
     51         itself.\n\nIn the AndroidManifest, this activity has been configured to receive callbacks
     52         for <b>screenSize|smallestScreenSize|screenLayout|orientation</b>
     53         changes.\nTry resizing this activity to different sizes to see which configuration
     54         properties change.
     55     </string>
     56     <string name="activity_bounds_description">This activity has been launched with a launch bounds
     57         set in its intent. The bounds define the area into which the activity should be launched.
     58         \n\nNote that this flag only applies in free-form mode.
     59     </string>
     60     <string name="activity_minimum_description">This activity has a minimum size.\nIt was launched
     61         into the top/end corner with a a default size of 750dp by 500dp, with a minimum size of 750dp
     62         as defined in its <b>layout attribute in the AndroidManifest definition</b>.
     63         \n\nNote that this Activity was launched in a different task, otherwise the properties from
     64         the Activity that launched this one would have been applied.
     65     </string>
     66 </resources>
     67