119 lines
3.8 KiB
Java
119 lines
3.8 KiB
Java
package org.schabi.newpipe;
|
|
|
|
import android.content.Context;
|
|
import android.os.Bundle;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.v4.app.Fragment;
|
|
import android.support.v4.app.FragmentManager;
|
|
import android.support.v7.app.AppCompatActivity;
|
|
import android.util.Log;
|
|
import android.view.View;
|
|
|
|
import com.nostra13.universalimageloader.core.ImageLoader;
|
|
import com.squareup.leakcanary.RefWatcher;
|
|
|
|
import icepick.Icepick;
|
|
import icepick.State;
|
|
|
|
public abstract class BaseFragment extends Fragment {
|
|
protected final String TAG = getClass().getSimpleName() + "@" + Integer.toHexString(hashCode());
|
|
protected final boolean DEBUG = MainActivity.DEBUG;
|
|
|
|
protected AppCompatActivity activity;
|
|
public static final ImageLoader imageLoader = ImageLoader.getInstance();
|
|
|
|
//These values are used for controlling framgents when they are part of the frontpage
|
|
@State
|
|
protected boolean useAsFrontPage = false;
|
|
protected boolean mIsVisibleToUser = false;
|
|
|
|
public void useAsFrontPage(boolean value) {
|
|
useAsFrontPage = value;
|
|
}
|
|
|
|
/*//////////////////////////////////////////////////////////////////////////
|
|
// Fragment's Lifecycle
|
|
//////////////////////////////////////////////////////////////////////////*/
|
|
|
|
@Override
|
|
public void onAttach(Context context) {
|
|
super.onAttach(context);
|
|
activity = (AppCompatActivity) context;
|
|
}
|
|
|
|
@Override
|
|
public void onDetach() {
|
|
super.onDetach();
|
|
activity = null;
|
|
}
|
|
|
|
@Override
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
if (DEBUG) Log.d(TAG, "onCreate() called with: savedInstanceState = [" + savedInstanceState + "]");
|
|
super.onCreate(savedInstanceState);
|
|
Icepick.restoreInstanceState(this, savedInstanceState);
|
|
if (savedInstanceState != null) onRestoreInstanceState(savedInstanceState);
|
|
}
|
|
|
|
|
|
@Override
|
|
public void onViewCreated(View rootView, Bundle savedInstanceState) {
|
|
super.onViewCreated(rootView, savedInstanceState);
|
|
if (DEBUG) {
|
|
Log.d(TAG, "onViewCreated() called with: rootView = [" + rootView + "], savedInstanceState = [" + savedInstanceState + "]");
|
|
}
|
|
initViews(rootView, savedInstanceState);
|
|
initListeners();
|
|
}
|
|
|
|
@Override
|
|
public void onSaveInstanceState(Bundle outState) {
|
|
super.onSaveInstanceState(outState);
|
|
Icepick.saveInstanceState(this, outState);
|
|
}
|
|
|
|
protected void onRestoreInstanceState(@NonNull Bundle savedInstanceState) {
|
|
}
|
|
|
|
@Override
|
|
public void onDestroy() {
|
|
super.onDestroy();
|
|
|
|
RefWatcher refWatcher = App.getRefWatcher(getActivity());
|
|
if (refWatcher != null) refWatcher.watch(this);
|
|
}
|
|
|
|
@Override
|
|
public void setUserVisibleHint(boolean isVisibleToUser) {
|
|
super.setUserVisibleHint(isVisibleToUser);
|
|
mIsVisibleToUser = isVisibleToUser;
|
|
}
|
|
|
|
/*//////////////////////////////////////////////////////////////////////////
|
|
// Init
|
|
//////////////////////////////////////////////////////////////////////////*/
|
|
|
|
protected void initViews(View rootView, Bundle savedInstanceState) {
|
|
}
|
|
|
|
protected void initListeners() {
|
|
}
|
|
|
|
/*//////////////////////////////////////////////////////////////////////////
|
|
// Utils
|
|
//////////////////////////////////////////////////////////////////////////*/
|
|
|
|
public void setTitle(String title) {
|
|
if (DEBUG) Log.d(TAG, "setTitle() called with: title = [" + title + "]");
|
|
if((!useAsFrontPage || mIsVisibleToUser)
|
|
&& (activity != null && activity.getSupportActionBar() != null)) {
|
|
activity.getSupportActionBar().setTitle(title);
|
|
}
|
|
}
|
|
|
|
protected FragmentManager getFM() {
|
|
return getParentFragment() == null
|
|
? getFragmentManager()
|
|
: getParentFragment().getFragmentManager();
|
|
}
|
|
}
|