项目作者: cxMax

项目描述 :
hook activity or fragment lifecycle event in anywhere of your codes.
高级语言: Java
项目地址: git://github.com/cxMax/LifeCycler.git
创建时间: 2016-12-14T16:22:30Z
项目社区:https://github.com/cxMax/LifeCycler

开源协议:Apache License 2.0

下载


LifeCycler

current version : 1.0.1

Introduction : 中文介绍

LifeCycler can help user to hook activity or fragment lifecycle event in anywhere of your codes.

Compile

  1. compile 'com.cxmax.lifecycler:library:1.0.1'

Usage:

  1. // register in main thread
  2. LifeCycler.with(this)
  3. .addOnActivityCreatedListener(new Consumer() {
  4. /**
  5. * notice : this callback will run on UI thread
  6. *
  7. * @param activity
  8. * @param bundle
  9. */
  10. @Override
  11. public void run(Activity activity, Bundle bundle) {
  12. //do something in activity onCreate lifecycle
  13. }
  14. })
  15. .addOnActivityResumedListener(new Consumer() {
  16. @Override
  17. public void run(Activity activity, Bundle bundle) {
  18. //do something in activity onResume lifecycle
  19. }
  20. });

Thanks :

  1. glide
  2. android source code
  3. Jween’s LifeCycler

License

Copyright (C) 2017 cxMax
Copyright (C) 2017 LifeCycler

Licensed under the Apache License, Version 2.0 (the “License”);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  1. http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.