Skip to content

Commit ddca68d

Browse files
author
Jeremy Walker
committed
Adds SwipeRefreshLayoutBasic sample.
Change-Id: Ida3e0ddedd567bdbc98cb1672c6cb81cb6a217d1
1 parent a222515 commit ddca68d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2844
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
# GOOGLE SAMPLE PACKAGING DATA
3+
#
4+
# This file is used by Google as part of our samples packaging process.
5+
# End users may safely ignore this file. It has no relevance to other systems.
6+
---
7+
status: PUBLISHED
8+
technologies: [Android]
9+
categories: [UI]
10+
languages: [Java]
11+
solutions: [Mobile]
12+
github: android/views-widgets
13+
license: apache2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
2+
buildscript {
3+
repositories {
4+
google()
5+
jcenter()
6+
}
7+
8+
dependencies {
9+
classpath 'com.android.tools.build:gradle:3.4.2'
10+
}
11+
}
12+
13+
apply plugin: 'com.android.application'
14+
15+
repositories {
16+
google()
17+
jcenter()
18+
}
19+
20+
dependencies {
21+
22+
23+
implementation "com.android.support:support-v4:28.0.0"
24+
implementation "com.android.support:support-v13:28.0.0"
25+
implementation "com.android.support:cardview-v7:28.0.0"
26+
implementation "com.android.support:appcompat-v7:28.0.0"
27+
28+
29+
30+
31+
32+
33+
}
34+
35+
// The sample build uses multiple directories to
36+
// keep boilerplate and common code separate from
37+
// the main sample code.
38+
List<String> dirs = [
39+
'main', // main sample code; look here for the interesting stuff.
40+
'common', // components that are reused by multiple samples
41+
'template'] // boilerplate code that is generated by the sample template process
42+
43+
android {
44+
compileSdkVersion 28
45+
46+
defaultConfig {
47+
minSdkVersion 14
48+
targetSdkVersion 28
49+
}
50+
51+
compileOptions {
52+
sourceCompatibility JavaVersion.VERSION_1_7
53+
targetCompatibility JavaVersion.VERSION_1_7
54+
}
55+
56+
sourceSets {
57+
main {
58+
dirs.each { dir ->
59+
java.srcDirs "src/${dir}/java"
60+
res.srcDirs "src/${dir}/res"
61+
}
62+
}
63+
androidTest.setRoot('tests')
64+
androidTest.java.srcDirs = ['tests/src']
65+
66+
}
67+
68+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Copyright 2013 The Android Open Source Project
4+
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
-->
17+
18+
19+
20+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
21+
package="com.example.android.swiperefreshlayoutbasic"
22+
android:versionCode="1"
23+
android:versionName="1.0">
24+
25+
<!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle -->
26+
27+
<application android:allowBackup="true"
28+
android:label="@string/app_name"
29+
android:icon="@drawable/ic_launcher"
30+
android:theme="@style/AppTheme">
31+
32+
<activity android:name=".MainActivity"
33+
android:label="@string/app_name">
34+
<intent-filter>
35+
<action android:name="android.intent.action.MAIN" />
36+
<category android:name="android.intent.category.LAUNCHER" />
37+
</intent-filter>
38+
</activity>
39+
</application>
40+
41+
42+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
/*
2+
* Copyright 2013 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+
package com.example.android.common.activities;
18+
19+
import android.os.Bundle;
20+
import android.support.v4.app.FragmentActivity;
21+
22+
import com.example.android.common.logger.Log;
23+
import com.example.android.common.logger.LogWrapper;
24+
25+
/**
26+
* Base launcher activity, to handle most of the common plumbing for samples.
27+
*/
28+
public class SampleActivityBase extends FragmentActivity {
29+
30+
public static final String TAG = "SampleActivityBase";
31+
32+
@Override
33+
protected void onCreate(Bundle savedInstanceState) {
34+
super.onCreate(savedInstanceState);
35+
}
36+
37+
@Override
38+
protected void onStart() {
39+
super.onStart();
40+
initializeLogging();
41+
}
42+
43+
/** Set up targets to receive log data */
44+
public void initializeLogging() {
45+
// Using Log, front-end to the logging chain, emulates android.util.log method signatures.
46+
// Wraps Android's native log framework
47+
LogWrapper logWrapper = new LogWrapper();
48+
Log.setLogNode(logWrapper);
49+
50+
Log.i(TAG, "Ready");
51+
}
52+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
1+
/*
2+
* Copyright 2013 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+
package com.example.android.common.dummydata;
18+
19+
import java.util.ArrayList;
20+
import java.util.HashSet;
21+
import java.util.Random;
22+
23+
/**
24+
* Dummy data.
25+
*/
26+
public class Cheeses {
27+
static final String[] CHEESES = {
28+
"Abbaye de Belloc", "Abbaye du Mont des Cats", "Abertam", "Abondance", "Ackawi",
29+
"Acorn", "Adelost", "Affidelice au Chablis", "Afuega'l Pitu", "Airag", "Airedale",
30+
"Aisy Cendre", "Allgauer Emmentaler", "Alverca", "Ambert", "American Cheese",
31+
"Ami du Chambertin", "Anejo Enchilado", "Anneau du Vic-Bilh", "Anthoriro", "Appenzell",
32+
"Aragon", "Ardi Gasna", "Ardrahan", "Armenian String", "Aromes au Gene de Marc",
33+
"Asadero", "Asiago", "Aubisque Pyrenees", "Autun", "Avaxtskyr", "Baby Swiss",
34+
"Babybel", "Baguette Laonnaise", "Bakers", "Baladi", "Balaton", "Bandal", "Banon",
35+
"Barry's Bay Cheddar", "Basing", "Basket Cheese", "Bath Cheese", "Bavarian Bergkase",
36+
"Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
37+
"Bergader", "Bergere Bleue", "Berkswell", "Beyaz Peynir", "Bierkase", "Bishop Kennedy",
38+
"Blarney", "Bleu d'Auvergne", "Bleu de Gex", "Bleu de Laqueuille",
39+
"Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
40+
"Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
41+
"Boeren Leidenkaas", "Bonchester", "Bosworth", "Bougon", "Boule Du Roves",
42+
"Boulette d'Avesnes", "Boursault", "Boursin", "Bouyssou", "Bra", "Braudostur",
43+
"Breakfast Cheese", "Brebis du Lavort", "Brebis du Lochois", "Brebis du Puyfaucon",
44+
"Bresse Bleu", "Brick", "Brie", "Brie de Meaux", "Brie de Melun", "Brillat-Savarin",
45+
"Brin", "Brin d' Amour", "Brin d'Amour", "Brinza (Burduf Brinza)",
46+
"Briquette de Brebis", "Briquette du Forez", "Broccio", "Broccio Demi-Affine",
47+
"Brousse du Rove", "Bruder Basil", "Brusselae Kaas (Fromage de Bruxelles)", "Bryndza",
48+
"Buchette d'Anjou", "Buffalo", "Burgos", "Butte", "Butterkase", "Button (Innes)",
49+
"Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
50+
"Caerphilly", "Cairnsmore", "Calenzana", "Cambazola", "Camembert de Normandie",
51+
"Canadian Cheddar", "Canestrato", "Cantal", "Caprice des Dieux", "Capricorn Goat",
52+
"Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
53+
"Castelleno", "Castelmagno", "Castelo Branco", "Castigliano", "Cathelain",
54+
"Celtic Promise", "Cendre d'Olivet", "Cerney", "Chabichou", "Chabichou du Poitou",
55+
"Chabis de Gatine", "Chaource", "Charolais", "Chaumes", "Cheddar",
56+
"Cheddar Clothbound", "Cheshire", "Chevres", "Chevrotin des Aravis", "Chontaleno",
57+
"Civray", "Coeur de Camembert au Calvados", "Coeur de Chevre", "Colby", "Cold Pack",
58+
"Comte", "Coolea", "Cooleney", "Coquetdale", "Corleggy", "Cornish Pepper",
59+
"Cotherstone", "Cotija", "Cottage Cheese", "Cottage Cheese (Australian)",
60+
"Cougar Gold", "Coulommiers", "Coverdale", "Crayeux de Roncq", "Cream Cheese",
61+
"Cream Havarti", "Crema Agria", "Crema Mexicana", "Creme Fraiche", "Crescenza",
62+
"Croghan", "Crottin de Chavignol", "Crottin du Chavignol", "Crowdie", "Crowley",
63+
"Cuajada", "Curd", "Cure Nantais", "Curworthy", "Cwmtawe Pecorino",
64+
"Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
65+
"Daralagjazsky", "Dauphin", "Delice des Fiouves", "Denhany Dorset Drum", "Derby",
66+
"Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin",
67+
"Doppelrhamstufel", "Dorset Blue Vinney", "Double Gloucester", "Double Worcester",
68+
"Dreux a la Feuille", "Dry Jack", "Duddleswell", "Dunbarra", "Dunlop", "Dunsyre Blue",
69+
"Duroblando", "Durrus", "Dutch Mimolette (Commissiekaas)", "Edam", "Edelpilz",
70+
"Emental Grand Cru", "Emlett", "Emmental", "Epoisses de Bourgogne", "Esbareich",
71+
"Esrom", "Etorki", "Evansdale Farmhouse Brie", "Evora De L'Alentejo", "Exmoor Blue",
72+
"Explorateur", "Feta", "Feta (Australian)", "Figue", "Filetta", "Fin-de-Siecle",
73+
"Finlandia Swiss", "Finn", "Fiore Sardo", "Fleur du Maquis", "Flor de Guia",
74+
"Flower Marie", "Folded", "Folded cheese with mint", "Fondant de Brebis",
75+
"Fontainebleau", "Fontal", "Fontina Val d'Aosta", "Formaggio di capra", "Fougerus",
76+
"Four Herb Gouda", "Fourme d' Ambert", "Fourme de Haute Loire", "Fourme de Montbrison",
77+
"Fresh Jack", "Fresh Mozzarella", "Fresh Ricotta", "Fresh Truffles", "Fribourgeois",
78+
"Friesekaas", "Friesian", "Friesla", "Frinault", "Fromage a Raclette", "Fromage Corse",
79+
"Fromage de Montagne de Savoie", "Fromage Frais", "Fruit Cream Cheese",
80+
"Frying Cheese", "Fynbo", "Gabriel", "Galette du Paludier", "Galette Lyonnaise",
81+
"Galloway Goat's Milk Gems", "Gammelost", "Gaperon a l'Ail", "Garrotxa", "Gastanberra",
82+
"Geitost", "Gippsland Blue", "Gjetost", "Gloucester", "Golden Cross", "Gorgonzola",
83+
"Gornyaltajski", "Gospel Green", "Gouda", "Goutu", "Gowrie", "Grabetto", "Graddost",
84+
"Grafton Village Cheddar", "Grana", "Grana Padano", "Grand Vatel",
85+
"Grataron d' Areches", "Gratte-Paille", "Graviera", "Greuilh", "Greve",
86+
"Gris de Lille", "Gruyere", "Gubbeen", "Guerbigny", "Halloumi",
87+
"Halloumy (Australian)", "Haloumi-Style Cheese", "Harbourne Blue", "Havarti",
88+
"Heidi Gruyere", "Hereford Hop", "Herrgardsost", "Herriot Farmhouse", "Herve",
89+
"Hipi Iti", "Hubbardston Blue Cow", "Hushallsost", "Iberico", "Idaho Goatster",
90+
"Idiazabal", "Il Boschetto al Tartufo", "Ile d'Yeu", "Isle of Mull", "Jarlsberg",
91+
"Jermi Tortes", "Jibneh Arabieh", "Jindi Brie", "Jubilee Blue", "Juustoleipa",
92+
"Kadchgall", "Kaseri", "Kashta", "Kefalotyri", "Kenafa", "Kernhem", "Kervella Affine",
93+
"Kikorangi", "King Island Cape Wickham Brie", "King River Gold", "Klosterkaese",
94+
"Knockalara", "Kugelkase", "L'Aveyronnais", "L'Ecir de l'Aubrac", "La Taupiniere",
95+
"La Vache Qui Rit", "Laguiole", "Lairobell", "Lajta", "Lanark Blue", "Lancashire",
96+
"Langres", "Lappi", "Laruns", "Lavistown", "Le Brin", "Le Fium Orbo", "Le Lacandou",
97+
"Le Roule", "Leafield", "Lebbene", "Leerdammer", "Leicester", "Leyden", "Limburger",
98+
"Lincolnshire Poacher", "Lingot Saint Bousquet d'Orb", "Liptauer", "Little Rydings",
99+
"Livarot", "Llanboidy", "Llanglofan Farmhouse", "Loch Arthur Farmhouse",
100+
"Loddiswell Avondale", "Longhorn", "Lou Palou", "Lou Pevre", "Lyonnais", "Maasdam",
101+
"Macconais", "Mahoe Aged Gouda", "Mahon", "Malvern", "Mamirolle", "Manchego",
102+
"Manouri", "Manur", "Marble Cheddar", "Marbled Cheeses", "Maredsous", "Margotin",
103+
"Maribo", "Maroilles", "Mascares", "Mascarpone", "Mascarpone (Australian)",
104+
"Mascarpone Torta", "Matocq", "Maytag Blue", "Meira", "Menallack Farmhouse",
105+
"Menonita", "Meredith Blue", "Mesost", "Metton (Cancoillotte)", "Meyer Vintage Gouda",
106+
"Mihalic Peynir", "Milleens", "Mimolette", "Mine-Gabhar", "Mini Baby Bells", "Mixte",
107+
"Molbo", "Monastery Cheeses", "Mondseer", "Mont D'or Lyonnais", "Montasio",
108+
"Monterey Jack", "Monterey Jack Dry", "Morbier", "Morbier Cru de Montagne",
109+
"Mothais a la Feuille", "Mozzarella", "Mozzarella (Australian)",
110+
"Mozzarella di Bufala", "Mozzarella Fresh, in water", "Mozzarella Rolls", "Munster",
111+
"Murol", "Mycella", "Myzithra", "Naboulsi", "Nantais", "Neufchatel",
112+
"Neufchatel (Australian)", "Niolo", "Nokkelost", "Northumberland", "Oaxaca",
113+
"Olde York", "Olivet au Foin", "Olivet Bleu", "Olivet Cendre",
114+
"Orkney Extra Mature Cheddar", "Orla", "Oschtjepka", "Ossau Fermier", "Ossau-Iraty",
115+
"Oszczypek", "Oxford Blue", "P'tit Berrichon", "Palet de Babligny", "Paneer", "Panela",
116+
"Pannerone", "Pant ys Gawn", "Parmesan (Parmigiano)", "Parmigiano Reggiano",
117+
"Pas de l'Escalette", "Passendale", "Pasteurized Processed", "Pate de Fromage",
118+
"Patefine Fort", "Pave d'Affinois", "Pave d'Auge", "Pave de Chirac", "Pave du Berry",
119+
"Pecorino", "Pecorino in Walnut Leaves", "Pecorino Romano", "Peekskill Pyramid",
120+
"Pelardon des Cevennes", "Pelardon des Corbieres", "Penamellera", "Penbryn",
121+
"Pencarreg", "Perail de Brebis", "Petit Morin", "Petit Pardou", "Petit-Suisse",
122+
"Picodon de Chevre", "Picos de Europa", "Piora", "Pithtviers au Foin",
123+
"Plateau de Herve", "Plymouth Cheese", "Podhalanski", "Poivre d'Ane", "Polkolbin",
124+
"Pont l'Eveque", "Port Nicholson", "Port-Salut", "Postel", "Pouligny-Saint-Pierre",
125+
"Pourly", "Prastost", "Pressato", "Prince-Jean", "Processed Cheddar", "Provolone",
126+
"Provolone (Australian)", "Pyengana Cheddar", "Pyramide", "Quark",
127+
"Quark (Australian)", "Quartirolo Lombardo", "Quatre-Vents", "Quercy Petit",
128+
"Queso Blanco", "Queso Blanco con Frutas --Pina y Mango", "Queso de Murcia",
129+
"Queso del Montsec", "Queso del Tietar", "Queso Fresco", "Queso Fresco (Adobera)",
130+
"Queso Iberico", "Queso Jalapeno", "Queso Majorero", "Queso Media Luna",
131+
"Queso Para Frier", "Queso Quesadilla", "Rabacal", "Raclette", "Ragusano", "Raschera",
132+
"Reblochon", "Red Leicester", "Regal de la Dombes", "Reggianito", "Remedou",
133+
"Requeson", "Richelieu", "Ricotta", "Ricotta (Australian)", "Ricotta Salata", "Ridder",
134+
"Rigotte", "Rocamadour", "Rollot", "Romano", "Romans Part Dieu", "Roncal", "Roquefort",
135+
"Roule", "Rouleau De Beaulieu", "Royalp Tilsit", "Rubens", "Rustinu", "Saaland Pfarr",
136+
"Saanenkaese", "Saga", "Sage Derby", "Sainte Maure", "Saint-Marcellin",
137+
"Saint-Nectaire", "Saint-Paulin", "Salers", "Samso", "San Simon", "Sancerre",
138+
"Sap Sago", "Sardo", "Sardo Egyptian", "Sbrinz", "Scamorza", "Schabzieger", "Schloss",
139+
"Selles sur Cher", "Selva", "Serat", "Seriously Strong Cheddar", "Serra da Estrela",
140+
"Sharpam", "Shelburne Cheddar", "Shropshire Blue", "Siraz", "Sirene", "Smoked Gouda",
141+
"Somerset Brie", "Sonoma Jack", "Sottocenare al Tartufo", "Soumaintrain",
142+
"Sourire Lozerien", "Spenwood", "Sraffordshire Organic", "St. Agur Blue Cheese",
143+
"Stilton", "Stinking Bishop", "String", "Sussex Slipcote", "Sveciaost", "Swaledale",
144+
"Sweet Style Swiss", "Swiss", "Syrian (Armenian String)", "Tala", "Taleggio", "Tamie",
145+
"Tasmania Highland Chevre Log", "Taupiniere", "Teifi", "Telemea", "Testouri",
146+
"Tete de Moine", "Tetilla", "Texas Goat Cheese", "Tibet", "Tillamook Cheddar",
147+
"Tilsit", "Timboon Brie", "Toma", "Tomme Brulee", "Tomme d'Abondance",
148+
"Tomme de Chevre", "Tomme de Romans", "Tomme de Savoie", "Tomme des Chouans", "Tommes",
149+
"Torta del Casar", "Toscanello", "Touree de L'Aubier", "Tourmalet",
150+
"Trappe (Veritable)", "Trois Cornes De Vendee", "Tronchon", "Trou du Cru", "Truffe",
151+
"Tupi", "Turunmaa", "Tymsboro", "Tyn Grug", "Tyning", "Ubriaco", "Ulloa",
152+
"Vacherin-Fribourgeois", "Valencay", "Vasterbottenost", "Venaco", "Vendomois",
153+
"Vieux Corse", "Vignotte", "Vulscombe", "Waimata Farmhouse Blue",
154+
"Washed Rind Cheese (Australian)", "Waterloo", "Weichkaese", "Wellington",
155+
"Wensleydale", "White Stilton", "Whitestone Farmhouse", "Wigmore", "Woodside Cabecou",
156+
"Xanadu", "Xynotyro", "Yarg Cornish", "Yarra Valley Pyramid", "Yorkshire Blue",
157+
"Zamorano", "Zanetti Grana Padano", "Zanetti Parmigiano Reggiano"
158+
};
159+
160+
public static ArrayList<String> asList() {
161+
ArrayList<String> items = new ArrayList<String>();
162+
for (int i = 0, z = CHEESES.length ; i < z ; i++) {
163+
items.add(CHEESES[i]);
164+
}
165+
return items;
166+
}
167+
168+
/**
169+
* Return a list of random cheeses.
170+
*
171+
* @param count the amount of cheeses to return.
172+
*/
173+
public static ArrayList<String> randomList(int count) {
174+
Random random = new Random();
175+
HashSet<String> items = new HashSet<String>();
176+
177+
// Make sure that don't infinity loop
178+
count = Math.min(count, CHEESES.length);
179+
180+
while (items.size() < count) {
181+
items.add(CHEESES[random.nextInt(CHEESES.length)]);
182+
}
183+
184+
return new ArrayList<String>(items);
185+
}
186+
}

0 commit comments

Comments
 (0)