T_Presenter - The type of the Presenter.public abstract class ViewCompatDialogFragment<T_Presenter extends Presenter> extends DialogFragment implements View, PresentedView<T_Presenter>, Scopeable
ViewCompatDialogFragment provides an abstract base class for concrete DialogFragment
implementations that implement View components for a MVP architectural pattern
implementation.| Modifier and Type | Field and Description |
|---|---|
protected android.view.ViewGroup |
dialogView |
KEY_DEPENDENCY_SCOPE| Modifier | Constructor and Description |
|---|---|
protected |
ViewCompatDialogFragment() |
| Modifier and Type | Method and Description |
|---|---|
<T extends ViewBinding<?>> |
bind(int viewId)
Creates and binds a
ViewBinding to a View specified by the given view id. |
android.widget.AdapterView |
bind(int viewId,
AdapterViewBinding<?> binding,
AdapterViewBinding.Adapter<?> adapter)
Binds the given
AdapterViewBinding to the specified AdapterView. |
<T extends android.view.View> |
bind(int viewId,
ViewBinding<T> binding)
Binds the given
ViewBinding to the specified View. |
protected android.app.Dialog |
createDialog(android.os.Bundle inState) |
abstract T_Presenter |
getPresenter()
Gets the
Presenter assigned for this ViewCompatActivity. |
DependencyScope |
getScope() |
ViewState |
getState()
|
<T extends android.view.View> |
getView(int viewId)
Looks up and returns a
View with the given layout id. |
java.lang.String |
getViewTag()
Get a tag for this
View. |
void |
onActivityCreated(android.os.Bundle inState) |
protected void |
onCreateBindings()
Invoked to bind
ViewBindings to Views. |
android.app.Dialog |
onCreateDialog(android.os.Bundle inState) |
void |
onDestroy() |
void |
onPause() |
protected void |
onRestoreDependencies(DependencyMap dependencies)
This method can be overridden to restore dependencies after the
ViewCompatDialogFragment is
restored, for instance, after recreating it. |
protected void |
onRestoreState(android.os.Bundle inState)
This method can be overridden to restore state of this
ViewCompatDialogFragment from the given
Bundle. |
void |
onResume() |
protected void |
onSaveDependencies(DependencyMap dependencies)
This method can be overridden to save dependencies after the
ViewCompatDialogFragment is
restored, for instance, after recreating it. |
void |
onSaveInstanceState(android.os.Bundle outState) |
protected void |
onSaveState(android.os.Bundle outState)
This method can be overridden to save state of this
ViewCompatDialogFragment to the given
Bundle. |
void |
onStart() |
void |
onStop() |
void |
onViewCreated(android.view.View view,
android.os.Bundle inState) |
protected T_Presenter |
resolvePresenter()
Resolves the
Presenter assigned for this ViewCompatActivity. |
void |
setScope(DependencyScope scope) |
protected void |
setupWindowLayout(android.view.Window window) |
protected void |
setupWindowParams(android.view.Window window) |
public android.app.Dialog onCreateDialog(android.os.Bundle inState)
protected android.app.Dialog createDialog(android.os.Bundle inState)
public abstract T_Presenter getPresenter()
Presenter assigned for this ViewCompatActivity.getPresenter in interface PresentedView<T_Presenter extends Presenter>Presenter.protected T_Presenter resolvePresenter()
Presenter assigned for this ViewCompatActivity.Presenter.public java.lang.String getViewTag()
ViewView.getViewTag in interface ViewString.public void onViewCreated(android.view.View view,
android.os.Bundle inState)
public void onActivityCreated(android.os.Bundle inState)
public void onStart()
protected void setupWindowLayout(android.view.Window window)
protected void setupWindowParams(android.view.Window window)
protected void onCreateBindings()
ViewBindings to Views. This method has to be overridden in
classes extended from ViewCompatDialogFragment.public void onResume()
public void onStop()
public void onPause()
public void onDestroy()
public void onSaveInstanceState(android.os.Bundle outState)
protected void onSaveState(android.os.Bundle outState)
ViewCompatDialogFragment to the given
Bundle.outState - A Bundle.protected void onRestoreState(android.os.Bundle inState)
ViewCompatDialogFragment from the given
Bundle.inState - A Bundle.protected void onSaveDependencies(DependencyMap dependencies)
ViewCompatDialogFragment is
restored, for instance, after recreating it.dependencies - A DependencyMap for saving the dependencies.protected void onRestoreDependencies(DependencyMap dependencies)
ViewCompatDialogFragment is
restored, for instance, after recreating it.dependencies - A DependencyMap for restoring the dependencies.public <T extends android.view.View> T getView(int viewId)
View with the given layout id.viewId - A view id used in a layout XML resource.View.public <T extends ViewBinding<?>> T bind(int viewId)
ViewBinding to a View specified by the given view id.T - The parametrised type of the ViewDelagate.viewId - A view id used in a layout XML resource.ViewBinding.public <T extends android.view.View> T bind(int viewId,
ViewBinding<T> binding)
ViewBinding to the specified View.viewId - A view id in a layout XML specifying the target View.binding - An ViewBinding.View.public android.widget.AdapterView bind(int viewId,
AdapterViewBinding<?> binding,
AdapterViewBinding.Adapter<?> adapter)
AdapterViewBinding to the specified AdapterView.viewId - A view id in a layout XML specifying the target AdapterView.binding - An AdapterViewBinding.adapter - An AdapterViewBinding.Adapter that is assigned to AdapterViewBinding.AdapterView.public DependencyScope getScope()
public void setScope(DependencyScope scope)