Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 72dc780f authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru
Browse files

Fix build: tweak documentation links

Change-Id: I9c9c8615086b7173f4ad68b5183e7699275c7a2d
parent 3778a632
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -41,26 +41,26 @@ public class DialogFragment extends Fragment
        implements DialogInterface.OnCancelListener, DialogInterface.OnDismissListener {

    /**
     * Style for {@link #DialogFragment(int, int)} constructor: a basic,
     * Style for {@link #setStyle(int, int)}: a basic,
     * normal dialog.
     */
    public static final int STYLE_NORMAL = 0;

    /**
     * Style for {@link #DialogFragment(int, int)} constructor: don't include
     * Style for {@link #setStyle(int, int)}: don't include
     * a title area.
     */
    public static final int STYLE_NO_TITLE = 1;

    /**
     * Style for {@link #DialogFragment(int, int)} constructor: don't draw
     * Style for {@link #setStyle(int, int)}: don't draw
     * any frame at all; the view hierarchy returned by {@link #onCreateView}
     * is entirely responsible for drawing the dialog.
     */
    public static final int STYLE_NO_FRAME = 2;

    /**
     * Style for {@link #DialogFragment(int, int)} constructor: like
     * Style for {@link #setStyle(int, int)}: like
     * {@link #STYLE_NO_FRAME}, but also disables all input to the dialog.
     * The user can not touch it, and its window will not receive input focus.
     */
+2 −2
Original line number Diff line number Diff line
@@ -591,8 +591,8 @@ public abstract class PreferenceActivity extends ListActivity implements

    /**
     * Called when the user selects an item in the header list.  The default
     * implementation will call either {@link #startWithFragment(String)}
     * or {@link #switchToHeader(String)} as appropriate.
     * implementation will call either {@link #startWithFragment(String, Bundle)}
     * or {@link #switchToHeader(String, Bundle)} as appropriate.
     *
     * @param header The header that was selected.
     * @param position The header's position in the list.