Searched refs:BaseDialogFragment (Results 1 – 2 of 2) sorted by relevance
44 private final BaseDialogFragment mBase = new BaseDialogFragment(this);170 .findFragmentByTag(BaseDialogFragment.TAG_ACTION); in getActionFragment()175 .findFragmentByTag(BaseDialogFragment.TAG_CONTENT); in getContentFragment()206 boolean hasContent = fm.findFragmentByTag(BaseDialogFragment.TAG_CONTENT) != null; in getContentFragmentTransaction()212 ft.replace(mBase.mContentAreaId, fragment, BaseDialogFragment.TAG_CONTENT); in getContentFragmentTransaction()227 boolean hasActions = fm.findFragmentByTag(BaseDialogFragment.TAG_ACTION) != null; in addActionFragmentToTransaction()234 ft.replace(mBase.mActionAreaId, fragment, BaseDialogFragment.TAG_ACTION); in addActionFragmentToTransaction()
41 public class BaseDialogFragment { class62 public BaseDialogFragment(LiteFragment fragment) { in BaseDialogFragment() method in BaseDialogFragment