FragmentTransaction.java revision 17b9b81418c9166e181a992f27598e4de18d7203
1package android.app;
2
3/**
4 * API for performing a set of Fragment operations.
5 */
6public abstract class FragmentTransaction {
7    /**
8     * Calls {@link #add(int, Fragment, String)} with a 0 containerViewId.
9     */
10    public abstract FragmentTransaction add(Fragment fragment, String tag);
11
12    /**
13     * Calls {@link #add(int, Fragment, String)} with a null tag.
14     */
15    public abstract FragmentTransaction add(int containerViewId, Fragment fragment);
16
17    /**
18     * Add a fragment to the activity state.  This fragment may optionally
19     * also have its view (if {@link Fragment#onCreateView Fragment.onCreateView}
20     * returns non-null) into a container view of the activity.
21     *
22     * @param containerViewId Optional identifier of the container this fragment is
23     * to be placed in.  If 0, it will not be placed in a container.
24     * @param fragment The fragment to be added.  This fragment must not already
25     * be added to the activity.
26     * @param tag Optional tag name for the fragment, to later retrieve the
27     * fragment with {@link FragmentManager#findFragmentByTag(String)
28     * FragmentManager.findFragmentByTag(String)}.
29     *
30     * @return Returns the same FragmentTransaction instance.
31     */
32    public abstract FragmentTransaction add(int containerViewId, Fragment fragment, String tag);
33
34    /**
35     * Calls {@link #replace(int, Fragment, String)} with a null tag.
36     */
37    public abstract FragmentTransaction replace(int containerViewId, Fragment fragment);
38
39    /**
40     * Replace an existing fragment that was added to a container.  This is
41     * essentially the same as calling {@link #remove(Fragment)} for all
42     * currently added fragments that were added with the same containerViewId
43     * and then {@link #add(int, Fragment, String)} with the same arguments
44     * given here.
45     *
46     * @param containerViewId Identifier of the container whose fragment(s) are
47     * to be replaced.
48     * @param fragment The new fragment to place in the container.
49     * @param tag Optional tag name for the fragment, to later retrieve the
50     * fragment with {@link FragmentManager#findFragmentByTag(String)
51     * FragmentManager.findFragmentByTag(String)}.
52     *
53     * @return Returns the same FragmentTransaction instance.
54     */
55    public abstract FragmentTransaction replace(int containerViewId, Fragment fragment, String tag);
56
57    /**
58     * Remove an existing fragment.  If it was added to a container, its view
59     * is also removed from that container.
60     *
61     * @param fragment The fragment to be removed.
62     *
63     * @return Returns the same FragmentTransaction instance.
64     */
65    public abstract FragmentTransaction remove(Fragment fragment);
66
67    /**
68     * Hides an existing fragment.  This is only relevant for fragments whose
69     * views have been added to a container, as this will cause the view to
70     * be hidden.
71     *
72     * @param fragment The fragment to be hidden.
73     *
74     * @return Returns the same FragmentTransaction instance.
75     */
76    public abstract FragmentTransaction hide(Fragment fragment);
77
78    /**
79     * Shows a previously hidden fragment.  This is only relevant for fragments whose
80     * views have been added to a container, as this will cause the view to
81     * be shown.
82     *
83     * @param fragment The fragment to be shown.
84     *
85     * @return Returns the same FragmentTransaction instance.
86     */
87    public abstract FragmentTransaction show(Fragment fragment);
88
89    /**
90     * @return <code>true</code> if this transaction contains no operations,
91     * <code>false</code> otherwise.
92     */
93    public abstract boolean isEmpty();
94
95    /**
96     * Bit mask that is set for all enter transitions.
97     */
98    public static final int TRANSIT_ENTER_MASK = 0x1000;
99
100    /**
101     * Bit mask that is set for all exit transitions.
102     */
103    public static final int TRANSIT_EXIT_MASK = 0x2000;
104
105    /** Not set up for a transition. */
106    public static final int TRANSIT_UNSET = -1;
107    /** No animation for transition. */
108    public static final int TRANSIT_NONE = 0;
109    /** Fragment is being added onto the stack */
110    public static final int TRANSIT_FRAGMENT_OPEN = 1 | TRANSIT_ENTER_MASK;
111    /** Fragment is being removed from the stack */
112    public static final int TRANSIT_FRAGMENT_CLOSE = 2 | TRANSIT_EXIT_MASK;
113    /** Fragment should simply fade in or out; that is, no strong navigation associated
114     * with it except that it is appearing or disappearing for some reason. */
115    public static final int TRANSIT_FRAGMENT_FADE = 3 | TRANSIT_ENTER_MASK;
116
117    /**
118     * Set specific animation resources to run for the fragments that are
119     * entering and exiting in this transaction.
120     */
121    public abstract FragmentTransaction setCustomAnimations(int enter, int exit);
122
123    /**
124     * Select a standard transition animation for this transaction.  May be
125     * one of {@link #TRANSIT_NONE}, {@link #TRANSIT_FRAGMENT_OPEN},
126     * or {@link #TRANSIT_FRAGMENT_CLOSE}
127     */
128    public abstract FragmentTransaction setTransition(int transit);
129
130    /**
131     * Set a custom style resource that will be used for resolving transit
132     * animations.
133     */
134    public abstract FragmentTransaction setTransitionStyle(int styleRes);
135
136    /**
137     * Add this transaction to the back stack.  This means that the transaction
138     * will be remembered after it is committed, and will reverse its operation
139     * when later popped off the stack.
140     *
141     * @param name An optional name for this back stack state, or null.
142     */
143    public abstract FragmentTransaction addToBackStack(String name);
144
145    /**
146     * Returns true if this FragmentTransaction is allowed to be added to the back
147     * stack. If this method would return false, {@link #addToBackStack(String)}
148     * will throw {@link IllegalStateException}.
149     *
150     * @return True if {@link #addToBackStack(String)} is permitted on this transaction.
151     */
152    public abstract boolean isAddToBackStackAllowed();
153
154    /**
155     * Disallow calls to {@link #addToBackStack(String)}. Any future calls to
156     * addToBackStack will throw {@link IllegalStateException}. If addToBackStack
157     * has already been called, this method will throw IllegalStateException.
158     */
159    public abstract FragmentTransaction disallowAddToBackStack();
160
161    /**
162     * Set the full title to show as a bread crumb when this transaction
163     * is on the back stack, as used by {@link FragmentBreadCrumbs}.
164     *
165     * @param res A string resource containing the title.
166     */
167    public abstract FragmentTransaction setBreadCrumbTitle(int res);
168
169    /**
170     * Like {@link #setBreadCrumbTitle(int)} but taking a raw string; this
171     * method is <em>not</em> recommended, as the string can not be changed
172     * later if the locale changes.
173     */
174    public abstract FragmentTransaction setBreadCrumbTitle(CharSequence text);
175
176    /**
177     * Set the short title to show as a bread crumb when this transaction
178     * is on the back stack, as used by {@link FragmentBreadCrumbs}.
179     *
180     * @param res A string resource containing the title.
181     */
182    public abstract FragmentTransaction setBreadCrumbShortTitle(int res);
183
184    /**
185     * Like {@link #setBreadCrumbShortTitle(int)} but taking a raw string; this
186     * method is <em>not</em> recommended, as the string can not be changed
187     * later if the locale changes.
188     */
189    public abstract FragmentTransaction setBreadCrumbShortTitle(CharSequence text);
190
191    /**
192     * Schedules a commit of this transaction.  The commit does
193     * not happen immediately; it will be scheduled as work on the main thread
194     * to be done the next time that thread is ready.
195     *
196     * <p class="note">A transaction can only be committed with this method
197     * prior to its containing activity saving its state.  If the commit is
198     * attempted after that point, an exception will be thrown.  This is
199     * because the state after the commit can be lost if the activity needs to
200     * be restored from its state.  See {@link #commitAllowingStateLoss()} for
201     * situations where it may be okay to lose the commit.</p>
202     *
203     * @return Returns the identifier of this transaction's back stack entry,
204     * if {@link #addToBackStack(String)} had been called.  Otherwise, returns
205     * a negative number.
206     */
207    public abstract int commit();
208
209    /**
210     * Like {@link #commit} but allows the commit to be executed after an
211     * activity's state is saved.  This is dangerous because the commit can
212     * be lost if the activity needs to later be restored from its state, so
213     * this should only be used for cases where it is okay for the UI state
214     * to change unexpectedly on the user.
215     */
216    public abstract int commitAllowingStateLoss();
217}
218