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.activities; // w w w . ja v a 2 s. c o m import android.app.Activity; import android.os.Bundle; import butterknife.ButterKnife; /** * Base Activity * * Derive to inherit common functionality */ public abstract class BaseActivity extends Activity { /** * Inject views on post create * @param savedInstanceState Bundle state */ @Override protected void onPostCreate(Bundle savedInstanceState) { super.onPostCreate(savedInstanceState); ButterKnife.inject(this); } }