Android Open Source - Buckets I Bucket






From Project

Back to project page Buckets.

License

The source code is released under:

Apache License

If you think the Android project Buckets listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package ru.noties.buckets;
/*w  w w  .  j a v  a  2 s. c o  m*/
/**
 * Created by Dimitry Ivanov (mail@dimitryivanov.ru) on 28.12.2014.
 */
public interface IBucket {

    // is called when new bucket is created
    void onCreate();

    // is called when binded activity is recreated
    void onRecreate();

    // is called when binded activity is going to be recreated
    // so, release activity instance specific resources
    // view, controllers, etc.
    void onInvalidate();

    // is called when bucket binded activity is finishing
    // good for final release of resources
    void onDestroy();

}




Java Source Code List

ru.noties.buckets.AbsController.java
ru.noties.buckets.BucketAdapter.java
ru.noties.buckets.Bucket.java
ru.noties.buckets.Buckets.java
ru.noties.buckets.DataApplicationCallbacks.java
ru.noties.buckets.IBucketUser.java
ru.noties.buckets.IBucket.java
ru.noties.buckets.IController.java
ru.noties.buckets.sample.MyApplication.java
ru.noties.buckets.sample.ui.MainActivity.java
ru.noties.buckets.sample.ui.MainBucket.java
ru.noties.buckets.sample.ui.MainController.java
ru.noties.buckets.sample.ui.MainFragment.java