Skip to content

Instantly share code, notes, and snippets.

@hbb20
Created February 26, 2018 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbb20/da7d630bb799447b83ec22013619870b to your computer and use it in GitHub Desktop.
Save hbb20/da7d630bb799447b83ec22013619870b to your computer and use it in GitHub Desktop.
Find all resources for the workshop.
private void prepareLibRoomsData() {
//todo: make sure to create "libRoomDataArray" variable using 'String[] libRoomDataArray;' under Activity
//this will fill dummy data in array
libRoomDataArray = new String[]{
"Armadillo, MC 2.512",
"Austin, MC 3.232",
"Bluebonnet, MC 3.618",
"Chili, MC 3.701",
"Cotton, MC 3.622",
"Friendship 3.614",
"Jalapeno, MC 3.602",
"Lone Star, MC 2.520",
"Longhorn, MC 3.444",
"Mockingbird, MC 3.620",
"Monarch, MC 3.238",
"Pecan, MC 2.514",
"Prickly Pear, MC 2.516",
"Purple Sage, MC 2.518",
"Rio Grande, MC 3.706",
"Rodeo, MC 3.708",
"Tejas, MC 3.704",
"Topaz, MC 3.236"};
}
private void prepareWeatherData() {
//todo: make sure to create "weatherDataArray" variable using 'String[] weatherDataArray;' under Activity
//this will fill dummy data in array
weatherDataArray = new String[]{
"* February 27 - Meatballs - 16°C / 18°C",
"* February 28 - Cloudy - 19°C / 15°C",
"* March 1 - Stormy - 30°C / 11°C",
"* March 2 - Hurricane - 21°C / 9°C",
"* March 3 - Meteors - 16°C / 7°C",
"* March 4 - Apocalypse - 16°C / 8°C",
"* March 5 - Post Apocalypse - 15°C / 10°C",
"* March 6 - Meteors - 16°C / 7°C",
"* March 7 - Clear - 17°C / 15°C",
"* March 8 - Cloudy - 19°C / 15°C",
"* March 9 - Thunderstorms - 21°C / 9°C",
"* March 10 - Thunderstorms - 16°C / 7°C",
"* March 11 - 16°C / 8°C",
"* March 12 - Partly Cloudy - 15°C / 10°C",
"* March 13 - Meatballs - 16°C / 18°C",
"* March 14 - Cloudy - 19°C / 15°C",
"* March 15 - Stormy - 30°C / 11°C",
"* March 16 - Hurricane - 21°C / 9°C",
"* March 17 - Meteors - 16°C / 7°C",
"* March 18 - Apocalypse - 16°C / 8°C",
"* March 19 - Post Apocalypse - 15°C / 10°C",
"* March 20 - Meatballs - 16°C / 18°C",
"* March 21 - Cloudy - 19°C / 15°C",
"* March 22 - Stormy - 30°C / 11°C",
"* March 23 - Hurricane - 21°C / 9°C",
"* March 24 - Meteors - 16°C / 7°C",
"* March 25 - Apocalypse - 16°C / 8°C",
"* March 26 - Post Apocalypse - 15°C / 10°C"};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment