Java tutorial
/* * Copyright (C) 2017 MINDORKS NEXTGEN PRIVATE LIMITED * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://mindorks.com/license/apache-v2 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License */ package com.mindorks.framework.mvp.ui.base; import android.app.Dialog; import android.content.Context; import android.graphics.Color; import android.graphics.drawable.ColorDrawable; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.annotation.StringRes; import android.support.v4.app.DialogFragment; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentTransaction; import android.view.View; import android.view.ViewGroup; import android.view.Window; import android.widget.RelativeLayout; import com.mindorks.framework.mvp.di.component.ActivityComponent; import butterknife.Unbinder; /** * Created by janisharali on 24/05/17. */ public abstract class BaseDialog extends DialogFragment implements DialogMvpView { private BaseActivity mActivity; private Unbinder mUnBinder; @Override public void onAttach(Context context) { super.onAttach(context); if (context instanceof BaseActivity) { BaseActivity mActivity = (BaseActivity) context; this.mActivity = mActivity; mActivity.onFragmentAttached(); } } @Override public void showLoading() { if (mActivity != null) { mActivity.showLoading(); } } @Override public void hideLoading() { if (mActivity != null) { mActivity.hideLoading(); } } @Override public void onError(String message) { if (mActivity != null) { mActivity.onError(message); } } @Override public void onError(@StringRes int resId) { if (mActivity != null) { mActivity.onError(resId); } } @Override public void showMessage(String message) { if (mActivity != null) { mActivity.showMessage(message); } } @Override public void showMessage(@StringRes int resId) { if (mActivity != null) { mActivity.showMessage(resId); } } @Override public boolean isNetworkConnected() { if (mActivity != null) { return mActivity.isNetworkConnected(); } return false; } @Override public void onDetach() { mActivity = null; super.onDetach(); } @Override public void hideKeyboard() { if (mActivity != null) { mActivity.hideKeyboard(); } } @Override public void openActivityOnTokenExpire() { if (mActivity != null) { mActivity.openActivityOnTokenExpire(); } } public BaseActivity getBaseActivity() { return mActivity; } public ActivityComponent getActivityComponent() { if (mActivity != null) { return mActivity.getActivityComponent(); } return null; } public void setUnBinder(Unbinder unBinder) { mUnBinder = unBinder; } protected abstract void setUp(View view); @NonNull @Override public Dialog onCreateDialog(Bundle savedInstanceState) { // the content final RelativeLayout root = new RelativeLayout(getActivity()); root.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); // creating the fullscreen dialog final Dialog dialog = new Dialog(getContext()); dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); dialog.setContentView(root); if (dialog.getWindow() != null) { dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); dialog.getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT); } dialog.setCanceledOnTouchOutside(false); return dialog; } @Override public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); setUp(view); } public void show(FragmentManager fragmentManager, String tag) { FragmentTransaction transaction = fragmentManager.beginTransaction(); Fragment prevFragment = fragmentManager.findFragmentByTag(tag); if (prevFragment != null) { transaction.remove(prevFragment); } transaction.addToBackStack(null); show(transaction, tag); } @Override public void dismissDialog(String tag) { dismiss(); getBaseActivity().onFragmentDetached(tag); } @Override public void onDestroy() { if (mUnBinder != null) { mUnBinder.unbind(); } super.onDestroy(); } }