Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| 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."); |
| package edu.msstate.nsparc.mdes.fragments; | |
| import android.app.Activity; | |
| import android.app.ProgressDialog; | |
| import android.content.DialogInterface; | |
| import android.content.SharedPreferences; | |
| import android.os.AsyncTask; | |
| import android.os.Bundle; | |
| import android.preference.EditTextPreference; | |
| import android.preference.ListPreference; |