Back to project page RabbitEars.
The source code is released under:
MIT License
If you think the Android project RabbitEars 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.fbs.rabbitears.fragments; /* ww w . j a v a 2 s .c o m*/ import android.app.DialogFragment; import android.os.Bundle; import android.view.View; import butterknife.ButterKnife; /** * Base dialog fragment * * Derive to inherit common functionality */ public abstract class BaseDialogFragment extends DialogFragment { /** * Inject views on created * @param savedInstanceState Bundle state */ @Override public void onViewCreated(View view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); ButterKnife.inject(this, view); } }