public interface FeatureContainerProvider extends FeatureContainer
FeatureContainerProvider in an interface for an Activity that provides one
of more FeatureContainers.| Modifier and Type | Method and Description |
|---|---|
java.util.List<FeatureContainer> |
getFeatureContainers() |
void |
showView(FeatureView featureView,
int containerViewId,
boolean addToBackStack,
java.lang.String fragmentTag)
Shows the given
FeatureView. |
canCommitFragment, canGoBack, clearBackStack, getContainerViewId, getContext, getResources, goBackcanShowView, removeView, showViewjava.util.List<FeatureContainer> getFeatureContainers()
void showView(FeatureView featureView, int containerViewId, boolean addToBackStack, java.lang.String fragmentTag)
FeatureView. If parameter fragmentTag is given null
value, implementation of this method should use the View.getViewTag() method
to obtain the tag.featureView - A FeatureView. May not be null.containerViewId - The layout ID of the container ViewGroup.addToBackStack - A boolean value specifying if the FeatureView is added
to back stack.fragmentTag - A tag for the Fragment. May be null.