Back to project page rgb-tool.
The source code is released under:
Apache License
If you think the Android project rgb-tool 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 com.fastebro.androidrgbtool.ui; //from w w w . j a v a 2 s . c o m import de.greenrobot.event.EventBus; /** * Created by danielealtomare on 26/12/14. */ public class EventBaseActivity extends BaseActivity { @Override protected void onStart() { super.onStart(); EventBus.getDefault().register(this); } @Override protected void onStop() { super.onStop(); EventBus.getDefault().unregister(this); } }