Android.App.FragmentTransaction Members

The members of Android.App.FragmentTransaction are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Public Properties

[read-only]
abstract
IsAddToBackStackAllowedbool. Returns true if this FragmentTransaction is allowed to be added to the back stack.
[read-only]
abstract
IsEmptybool.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

abstract
Add(Fragment, string) : FragmentTransaction
Calls FragmentTransaction.Add(int, Android.App.Fragment, Android.App.Fragment) with a 0 containerViewId.
abstract
Add(int, Fragment) : FragmentTransaction
Calls FragmentTransaction.Add(int, Android.App.Fragment, Android.App.Fragment) with a null tag.
abstract
Add(int, Fragment, string) : FragmentTransaction
Add a fragment to the activity state.
abstract
AddSharedElement(Android.Views.View, string) : FragmentTransaction
Used with to map a View from a removed or hidden Fragment to a View from a shown or added Fragment.
abstract
AddToBackStack(string) : FragmentTransaction
Add this transaction to the back stack.
abstract
Attach(Fragment) : FragmentTransaction
Re-attach a fragment after it had previously been detached from the UI with FragmentTransaction.Detach(Fragment).
abstract
Commit() : int
Schedules a commit of this transaction.
abstract
CommitAllowingStateLoss() : int
Like FragmentTransaction.Commit but allows the commit to be executed after an activity's state is saved.
abstract
Detach(Fragment) : FragmentTransaction
Detach the given fragment from the UI.
abstract
DisallowAddToBackStack() : FragmentTransaction
Disallow calls to FragmentTransaction.AddToBackStack(string).
abstract
Hide(Fragment) : FragmentTransaction
Hides an existing fragment.
abstract
Remove(Fragment) : FragmentTransaction
Remove an existing fragment.
abstract
Replace(int, Fragment) : FragmentTransaction
Calls FragmentTransaction.Replace(int, Android.App.Fragment, Android.App.Fragment) with a null tag.
abstract
Replace(int, Fragment, string) : FragmentTransaction
Replace an existing fragment that was added to a container.
abstract
SetBreadCrumbShortTitle(Java.Lang.ICharSequence) : FragmentTransaction
Like FragmentTransaction.SetBreadCrumbShortTitle(int) but taking a raw string; this method is not recommended, as the string can not be changed later if the locale changes.
abstract
SetBreadCrumbShortTitle(int) : FragmentTransaction
Set the short title to show as a bread crumb when this transaction is on the back stack, as used by Android.App.FragmentBreadCrumbs.
SetBreadCrumbShortTitle(string) : FragmentTransaction
Documentation for this section has not yet been entered.
abstract
SetBreadCrumbTitle(Java.Lang.ICharSequence) : FragmentTransaction
Like FragmentTransaction.SetBreadCrumbTitle(int) but taking a raw string; this method is not recommended, as the string can not be changed later if the locale changes.
abstract
SetBreadCrumbTitle(int) : FragmentTransaction
Set the full title to show as a bread crumb when this transaction is on the back stack, as used by Android.App.FragmentBreadCrumbs.
SetBreadCrumbTitle(string) : FragmentTransaction
Documentation for this section has not yet been entered.
abstract
SetCustomAnimations(int, int) : FragmentTransaction
Set specific animation resources to run for the fragments that are entering and exiting in this transaction.
abstract
SetCustomAnimations(int, int, int, int) : FragmentTransaction
Set specific animation resources to run for the fragments that are entering and exiting in this transaction.
abstract
SetTransition(FragmentTransit) : FragmentTransaction
Select a standard transition animation for this transaction.
abstract
SetTransitionStyle(int) : FragmentTransaction
Set a custom style resource that will be used for resolving transit animations.
abstract
Show(Fragment) : FragmentTransaction
Shows a previously hidden fragment.