Skip to content
This repository has been archived by the owner on Sep 4, 2018. It is now read-only.

iamironz/lightweight-fragments

Repository files navigation

lightweight-fragments

Lightweight android fragment implementation. Uses base activity lifecycle stack. This is experimantal concept, please, use with caution!

Using fragment manager:

Create fragment manager instance:

manager = new FragmentManager(viewGroup, layoutInflater, new StackChangeListener() {
    @Override
    public <D extends Serializable> void onStackChanged(Fragment<D> fragment, FragmentMeta fragmentMeta) {
    
    }
});

To open fragment:

manager.openFragment(new MainFragment());

To close fragment:

manager.closeFragment(MainFragment.class);    

To close by instance:

final Fragment fragment = new MainFragment();
manager.closeFragment(fragment);

To pop fragment:

manager.popFragment(MainFragment.class);

Back pressing handling:

@Override
public void onBackPressed() {

    if (manager.hasNotEndedActions()) {
        manager.onActionEndRequired();
        return;
    }

    if(!manager.stackIsEmpty()) {
        manager.closeLastFragment();
        return;
    }

    super.onBackPressed();
    manager.destroyStack(); //do not use this method into onDestroy invocation for two-way orientation!!!
}

Activity lifecycle handling:

@Override
protected void onResume() {
    manager.onResume();
    super.onResume();
}

@Override
protected void onPause() {
    manager.onPause();
    super.onPause();
}

TODO:

  1. Robolectric tests
  2. More doc
  3. DialogFragment implementation

License

The MIT License (MIT)

Copyright (c) 2016 Alex Ironz

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.

About

Lightweight android fragment implementation. Uses base activity stack lifecycle

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages