blob: ab4e663b1720e4f1a036691da8475cccf631f17f [file] [log] [blame]
Trevor Johnsf420ff02014-10-22 20:10:29 -07001<?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>
Trevor Johnsabededd2014-12-09 18:47:59 -080021 <string name="welcome_text">Sample App</string>
Trevor Johnsf420ff02014-10-22 20:10:29 -070022
23 <string name="about_title">About</string>
Trevor Johnsabededd2014-12-09 18:47:59 -080024 <string name="about_text">Content is organized into multiple pages. Swipe between cards to view other content.</string>
Trevor Johnsf420ff02014-10-22 20:10:29 -070025
26 <string name="cards_title">Cards</string>
Trevor Johnsabededd2014-12-09 18:47:59 -080027 <string name="cards_text">Each page is created using a CardFragment. A layout is placed inside the card and the rest is handled automatically.</string>
Trevor Johnsf420ff02014-10-22 20:10:29 -070028
29 <string name="expansion_title">Expansion</string>
Trevor Johnsabededd2014-12-09 18:47:59 -080030 <string name="expansion_text">By default, each card will grow taller to accommodate extra content. Tall cards can be scrolled through like any scrollable view. The maximum height is controlled by setExpansionFactor() with a default of 10 pages. After that you\'ll notice a faded edge to indicate there is more. Expansion can be disabled completely using setExpansionEnabled(false). With this, the content will be clipped if it\'s taller than one page.</string>
Trevor Johnsf420ff02014-10-22 20:10:29 -070031
32 <string name="backgrounds_title">Backgrounds</string>
Trevor Johnsabededd2014-12-09 18:47:59 -080033 <string name="backgrounds_text">Backgrounds are supplied by the adapter\'s getBackground method. Parallax and crossfade effects are applied automatically.</string>
Trevor Johnsf420ff02014-10-22 20:10:29 -070034
35 <string name="columns_title">Columns</string>
Trevor Johnsabededd2014-12-09 18:47:59 -080036 <string name="columns_text">When moving between rows, the pager always returns to column 0. This is adjustable in the adapter. See method getCurrentColumnForRow().</string>
Trevor Johnsf420ff02014-10-22 20:10:29 -070037
38 <string name="dismiss_title">Dismiss</string>
Trevor Johnsabededd2014-12-09 18:47:59 -080039 <string name="dismiss_text">To exit the application, swipe from left to right.</string>
40 <string name="custom_fragment_text">"GridViewPager will accept any fragment. This is an example of a custom fragment with it's own background."</string>
Trevor Johnsf420ff02014-10-22 20:10:29 -070041
42</resources>