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.fragments; //ww w.j av a2 s. com import android.support.v4.app.DialogFragment; import de.greenrobot.event.EventBus; /** * Created by danielealtomare on 26/12/14. */ public class EventBaseDialogFragment extends DialogFragment { @Override public void onStart() { super.onStart(); EventBus.getDefault().register(this); } @Override public void onStop() { EventBus.getDefault().unregister(this); super.onStop(); } }