iklan banner
Source Code Dibawah ini

package com.app.truevox.recruiterapp.controller.ui.fragment;


import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v4.content.ContextCompat;
import android.view.View;

import com.app.truevox.recruiterapp.R;
import com.app.truevox.recruiterapp.controller.service.LogoutService;
import com.app.truevox.recruiterapp.controller.ui.fragment.home.HomeFragment;
import com.app.truevox.recruiterapp.controller.ui.fragment.profile.form.ExpendableFormFragment;
import com.app.truevox.recruiterapp.controller.ui.fragment.profile.form.LabelFormFragment;
import com.app.truevox.recruiterapp.controller.ui.fragment.profile.section.PersonalProfileBySectionContainerFragment;
import com.app.truevox.recruiterapp.controller.ui.fragment.profile.section.PersonalProfileBySectionFragment;
import com.app.truevox.recruiterapp.controller.ui.fragment.profile.section.PersonalProfileCombineBySectionFragment;
import com.app.truevox.recruiterapp.database.Facade;
import com.app.truevox.recruiterapp.database.entity.ParameterTbl;
import com.app.truevox.recruiterapp.database.entity.UserTbl;
import com.app.truevox.recruiterapp.resource.PreferencesManager;
import com.app.truevox.recruiterapp.resource.api.API;
import com.app.truevox.recruiterapp.utility.Constant;
import com.app.truevox.recruiterapp.utility.FirebaseDispatcherUtils;
import com.app.truevox.recruiterapp.utility.Utility;
import com.google.firebase.analytics.FirebaseAnalytics;

import org.greenrobot.eventbus.EventBus;
import org.greenrobot.eventbus.Subscribe;

import java.util.List;

import butterknife.ButterKnife;
import butterknife.Unbinder;
import timber.log.Timber;

/** * Created by Shiburagi on 16/06/2016. */public class BaseFragment extends Fragment {

Oldest