Forked from udacityandroid/Code snippet in WeatherActivity.java
Created
June 8, 2018 21:36
-
-
Save nduas77/7b0aa26f16cfdf57793a2019f98d1af4 to your computer and use it in GitHub Desktop.
Revisions
-
udacityandroid renamed this gist
Jun 22, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
udacityandroid revised this gist
Jun 22, 2015 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,3 @@ boolean isRaining = true; if (isRaining) { Log.v("WeatherActivity", "It's raining, better bring an umbrella."); -
udacityandroid revised this gist
Jun 16, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,4 +6,4 @@ } else { Log.v("WeatherActivity", "It's unlikely to rain."); } Log.v("WeatherActivity", "Thank you for using the WhetherWeather App."); -
udacityandroid created this gist
Jun 16, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ // WhetherWeather Example boolean isRaining = true; if (isRaining) { Log.v("WeatherActivity", "It's raining, better bring an umbrella."); } else { Log.v("WeatherActivity", "It's unlikely to rain."); } Log.v("WeatherActivity", "Thank you for using the WhetherWeather App");