Back to project page Sunshine.
The source code is released under:
MIT License
If you think the Android project Sunshine listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package cloudchen.com.sunshine; //from w w w . j a va2 s. com import android.content.Intent; import android.database.Cursor; import android.net.Uri; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.app.LoaderManager; import android.support.v4.content.CursorLoader; import android.support.v4.content.Loader; import android.util.Log; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.ListView; import java.util.Date; import cloudchen.com.sunshine.data.WeatherContract; import cloudchen.com.sunshine.data.WeatherContract.LocationEntry; import cloudchen.com.sunshine.data.WeatherContract.WeatherEntry; import cloudchen.com.sunshine.sync.SunshineSyncAdapter; public class ForecastFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor>{ private static final String TAG = ForecastFragment.class.getSimpleName(); ListView listView; ForecastAdapter forecastAdapter; private static final int FORECAST_LOADER = 0; private static final String POSITION_KEY = "position"; private String mLocation; private int loaderId; private int mLastSelectedPosition; private boolean useTodayLayout; // For the forecast view we're showing only a small subset of the stored data. // Specify the columns we need. private static final String[] FORECAST_COLUMNS = { // In this case the id needs to be fully qualified with a table name, since // the content provider joins the location & weather tables in the background // (both have an _id column) // On the one hand, that's annoying. On the other, you can search the weather table // using the location set by the user, which is only in the Location table. // So the convenience is worth it. WeatherEntry.TABLE_NAME + "." + WeatherEntry._ID, WeatherEntry.COLUMN_DATETEXT, WeatherEntry.COLUMN_SHORT_DESC, WeatherEntry.COLUMN_MAX_TEMP, WeatherEntry.COLUMN_MIN_TEMP, WeatherEntry.COLUMN_WEATHER_ID, LocationEntry.COLUMN_LOCATION_SETTING, LocationEntry.COLUMN_COORD_LAT, LocationEntry.COLUMN_COORD_LONG }; // These indices are tied to FORECAST_COLUMNS. If FORECAST_COLUMNS changes, these // must change. public static final int COL_WEATHER_ID = 0; public static final int COL_WEATHER_DATE = 1; public static final int COL_WEATHER_DESC = 2; public static final int COL_WEATHER_MAX_TEMP = 3; public static final int COL_WEATHER_MIN_TEMP = 4; public static final int COL_WEATHER_CONDITION_ID = 5; public static final int COL_LOCATION_SETTING = 6; public static final int COL_COORD_LAT = 7; public static final int COL_COORD_LONG = 8; public ForecastFragment() { } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setHasOptionsMenu(true); } @Override public void onActivityCreated(Bundle savedInstanceState) { getLoaderManager().initLoader(FORECAST_LOADER, null, this); super.onActivityCreated(savedInstanceState); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_forecast, container, false); if (savedInstanceState != null) { mLastSelectedPosition = savedInstanceState.getInt(POSITION_KEY); } forecastAdapter = new ForecastAdapter(getActivity(), null, 0); setUseTodayLayout(useTodayLayout); listView = (ListView) rootView.findViewById(R.id.listview_forecast); listView.setAdapter(forecastAdapter); listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) { ForecastAdapter adapter = (ForecastAdapter) adapterView.getAdapter(); Cursor cursor = adapter.getCursor(); if (cursor != null && cursor.moveToPosition(position)) { ((Callback) getActivity()).onItemSelected(cursor.getString(COL_WEATHER_DATE)); mLastSelectedPosition = position; } } }); return rootView; } @Override public void onSaveInstanceState(Bundle outState) { outState.putInt(POSITION_KEY, mLastSelectedPosition); super.onSaveInstanceState(outState); } @Override public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { inflater.inflate(R.menu.main, menu); } @Override public boolean onOptionsItemSelected(MenuItem item) { switch(item.getItemId()) { // case R.id.action_refresh: // updateWeather(); // return true; case R.id.action_settings: Intent intent = new Intent(getActivity(), SettingsActivity.class); startActivity(intent); return true; case R.id.action_view_location: openPreferredLocationInMap(); return true; } return super.onOptionsItemSelected(item); } private void openPreferredLocationInMap() { if ( null != forecastAdapter) { Cursor cursor = forecastAdapter.getCursor(); if ( null != cursor ) { cursor.moveToPosition(0); String posLat = cursor.getString(COL_COORD_LAT); String posLong = cursor.getString(COL_COORD_LONG); Log.d(TAG, "Location latitude: " + posLat); Log.d(TAG, "Location longitude: " + posLong); Uri geoLocation = Uri.parse("geo:" + posLat + "," + posLong); Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(geoLocation); if (intent.resolveActivity(getActivity().getPackageManager()) != null) { startActivity(intent); } else { Log.d(TAG, "Couldn't call " + geoLocation.toString() + ", no receiving apps installed!"); } } } } @Override public void onResume() { super.onResume(); if (mLocation != null && !mLocation.equals(Utility.getPreferredLocation(getActivity()))) { getLoaderManager().restartLoader(FORECAST_LOADER, null, this); } } public void setUseTodayLayout(boolean useTodayLayout) { this.useTodayLayout = useTodayLayout; if (forecastAdapter != null) { forecastAdapter.setUseTodayLayout(this.useTodayLayout); } } private void updateWeather() { SunshineSyncAdapter.syncImmediately(getActivity()); } @Override public Loader<Cursor> onCreateLoader(int id, Bundle args) { // This is called when a new Loader needs to be created. This // fragment only uses one loader, so we don't care about checking the id. loaderId = id; // To only show current and future dates, get the String representation for today, // and filter the query to return weather only for dates after or including today. // Only return data after today. String startDate = WeatherContract.getDbDateString(new Date()); // Sort order: Ascending, by date. String sortOrder = WeatherEntry.COLUMN_DATETEXT + " ASC"; mLocation = Utility.getPreferredLocation(getActivity()); Uri weatherForLocationUri = WeatherEntry.buildWeatherLocationWithStartDate( mLocation, startDate); // Now create and return a CursorLoader that will take care of // creating a Cursor for the data being displayed. return new CursorLoader( getActivity(), weatherForLocationUri, FORECAST_COLUMNS, null, null, sortOrder ); } @Override public void onLoadFinished(Loader<Cursor> loader, Cursor data) { forecastAdapter.swapCursor(data); if (mLastSelectedPosition != ListView.INVALID_POSITION) { listView.smoothScrollToPosition(mLastSelectedPosition); } } @Override public void onLoaderReset(Loader<Cursor> loader) { forecastAdapter.swapCursor(null); } /** * A callback interface that all activities containing this fragment must * implement. This mechanism allows activities to be notified of item * selections. */ public interface Callback { /** * Callback for when an item has been selected. */ public void onItemSelected(String date); } }