• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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
19    <string name="app_name">GridViewPager Sample</string>
20    <string name="welcome_title">GridViewPager</string>
21    <string name="welcome_text">Welcome!</string>
22
23    <string name="about_title">About</string>
24    <string name="about_text">Content is organized into multiple pages. Swipe
25        between cards to view other content.</string>
26
27    <string name="cards_title">Cards</string>
28    <string name="cards_text">Each page is created using a CardFragment. A
29        layout is placed inside the card and the rest is handled
30        automatically.</string>
31
32    <string name="expansion_title">Expansion</string>
33    <string name="expansion_text">By default, each card will grow taller to
34        accommodate extra content. Tall cards can be scrolled through
35        like any scrollable view. The maximum height is controlled by
36        setExpansionFactor() with a default of 10 pages. After that
37        you\'ll notice a faded edge to indicate there is more. Expansion
38        can be disabled completely using setExpansionEnabled(false).
39        With this, the content will be clipped if it\'s taller than one
40        page.</string>
41
42    <string name="backgrounds_title">Backgrounds</string>
43    <string name="backgrounds_text">Backgrounds are supplied by the adapter\'s
44        getBackground method. Parallax and crossfade effects are applied
45        automatically.</string>
46
47    <string name="columns_title">Columns</string>
48    <string name="columns_text">When moving between rows, the pager always
49        returns to column 0. This is adjustable in the adapter. See
50        method getCurrentColumnForRow().</string>
51
52    <string name="dismiss_title">Dismiss</string>
53    <string name="dismiss_text">To exit the application, swipe from left to
54        right.</string>
55
56</resources>
57