Back to project page XKCD-Reader.
The source code is released under:
Apache License
If you think the Android project XKCD-Reader 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.davidtpate.xkcd.ui.base; //www . j a v a 2 s . c o m import android.os.Bundle; import android.view.View; import butterknife.ButterKnife; import com.actionbarsherlock.app.SherlockFragment; /** * Base class for all non-specialized Fragments. */ public abstract class BaseFragment extends SherlockFragment { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setRetainInstance(true); } public void showProgressBar() { getSherlockActivity().setSupportProgressBarIndeterminateVisibility(true); } public void hideProgressBar() { getSherlockActivity().setSupportProgressBarIndeterminateVisibility(false); } @Override public void onDestroyView() { ButterKnife.reset(this); super.onDestroyView(); } @Override public void onViewCreated(View view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); ButterKnife.inject(this, view); } /** * Is this fragment still part of an activity and usable from the UI-thread? * * @return true if usable on the UI-thread, false otherwise */ protected boolean isUsable() { return getActivity() != null; } }