Java tutorial
/* * Copyright (c) 2014 Remel Pugh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.dabay6.libraries.androidshared.ui.dialogs; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.support.v4.app.DialogFragment; import android.support.v7.app.ActionBarActivity; import android.view.*; import android.view.WindowManager.LayoutParams; import com.dabay6.libraries.androidshared.logging.Logger; import com.dabay6.libraries.androidshared.ui.fragments.FragmentBase; import com.dabay6.libraries.androidshared.view.ViewsFinder; /** * BaseDialogFragment * * @author Remel Pugh * @version 1.0 */ @SuppressWarnings("unused") public abstract class BaseDialogFragment extends DialogFragment implements FragmentBase { private final static String TAG = Logger.makeTag(BaseDialogFragment.class); protected Context applicationContext; protected ViewsFinder finder; private boolean isDualPane = false; /** * {@inheritDoc} */ @Override public boolean isDualPane() { return isDualPane; } /** * {@inheritDoc} */ @Override public void setDualPane(final boolean isDualPane) { this.isDualPane = isDualPane; } /** * {@inheritDoc} */ @Override public void onAttach(final Activity activity) { super.onAttach(activity); applicationContext = activity.getApplicationContext(); } /** * {@inheritDoc} */ @Override public void onCreate(final Bundle savedInstanceState) { super.onCreate(savedInstanceState); initialize(savedInstanceState); setHasOptionsMenu(getMenuResourceId() != null && getMenuResourceId() > 0); } /** * {@inheritDoc} */ @Override public void onCreateOptionsMenu(final Menu menu, final MenuInflater inflater) { if (hasOptionsMenu() && getMenuResourceId() != null) { inflater.inflate(getMenuResourceId(), menu); super.onCreateOptionsMenu(menu, inflater); } } /** * {@inheritDoc} */ @Override public View onCreateView(final LayoutInflater inflater, final ViewGroup container, final Bundle savedInstanceState) { final View view = inflater.inflate(getLayoutResourceId(), null); finder = new ViewsFinder(view); afterViews(savedInstanceState); return view; } /** * {@inheritDoc} */ @Override public void onDetach() { applicationContext = null; super.onDetach(); } /** * {@inheritDoc} */ @Override public void onViewCreated(final View view, final Bundle savedInstanceState) { if (getDialog() != null) { getDialog().getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_ADJUST_RESIZE); } super.onViewCreated(view, savedInstanceState); } /** * {@inheritDoc} */ @Override public void setSubtitle(final int subtitleResId) { setSubtitle(getString(subtitleResId)); } /** * {@inheritDoc} */ @Override public void setSubtitle(final String subtitle) { if (!isAdded()) { return; } if (getDialog() == null) { if (getActivity() instanceof ActionBarActivity) { ((ActionBarActivity) getActivity()).getSupportActionBar().setSubtitle(subtitle); } } } /** * {@inheritDoc} */ @Override public void setTitle(final int titleId) { setTitle(getString(titleId)); } /** * {@inheritDoc} */ @Override public void setTitle(final String title) { if (!isAdded()) { return; } if (getDialog() == null) { getActivity().setTitle(title); } else { getDialog().setTitle(title); } } /** * Called after the view has been created. * * @param savedInstanceState The saved state of fragment. */ @SuppressWarnings("EmptyMethod") protected abstract void afterViews(final Bundle savedInstanceState); /** * Gets the layout resource for this instance. * * @return Resource identifier for the layout resource. */ @SuppressWarnings("SameReturnValue") protected abstract int getLayoutResourceId(); /** * Gets the menu resource for this instance. * * @return Resource identifier for the menu resource. */ @SuppressWarnings("SameReturnValue") protected abstract Integer getMenuResourceId(); /** * Initializes this instance. * * @param savedInstanceState If the fragment is being re-initialized after previously being shut down then this * Bundle contains the data it most recently supplied in {@link * BaseDialogFragment#onSaveInstanceState(android.os.Bundle)}. Note: * Otherwise it is null. */ @SuppressWarnings("EmptyMethod") protected void initialize(final Bundle savedInstanceState) { } }