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 net.alteridem.sunshine; /*w w w .j a v a 2 s . c o m*/ /** * A callback interface that all activities containing this fragment must * implement. This mechanism allows activities to be notified of item * selections. */ public interface IForecastFragmentHost { /** * Callback for when an item has been selected. */ public void onItemSelected(String date); /** * Returns true if this is a two pane view * * @return */ public boolean isTwoPane(); }