android-complicated-problems/Users/toshihiro-yagi/Documents/git/github/android-complicated-problems/LICENSE

origin : http://konifar-zatsu.hatenadiary.jp/entry/2016/05/05/002128

Complicated problems

ja

  1. Continue loading data and display them on a screen (ex. RecyclerView, ListView and more) even if Activity or Fragment is recreated by a screen rotation.
  2. Cancel loading data when an Activity or Fragment is paused or stopped.
  3. Click button such as Like Button then immediately open next Activity or Fragment. It will destroy the button but should continue the handling.
  4. Allow to retry if load of content failed...
  5. Open the screen in an off-line mode. the screen require request to API.
  6. Show rectangle ad if search result is empty. Otherwise show banner ad on footer.
  7. Integrate multiple request. e.g. Loading a content of HeaderView and a content of RecyclerView. Both request wait for each other.
  8. Display a native ad in second and eighth in the list. The ad should preloaded.
  9. When send message in message form, show result before end of the request.
  10. Allow to retry if send of message failed. It is necessary to solve this problem with No 9.
  11. Load optimized image in each situation. WiFi, 3G, narrow band and more.
  12. Preload content if connected to WiFi.

LICENSE

The MIT License (MIT)

Copyright (c) 2016 Toshihiro Yagi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.