android.app.Fragment已过时

今天早上使用Fragment时,忽然发现,android.app.Fragment已经过时了…

/**
 * @deprecated Use the Support Library
 *      {@link android.support.v4.app.Fragment} for consistent behavior across all devices
 *      and access to Lifecycle.
 */
@Deprecated
public class Fragment implements ComponentCallbacks2, OnCreateContextMenuListener {}

官方建议使用android.support.v4.app.Fragment来替代.
还有就是:android.app.FragmentManager也是过时了…官方建议使用import android.support.v4.app.FragmentManager;

/**
 * @deprecated Use the Support Library
 *      {@link android.support.v4.app.FragmentManager} for consistent behavior across all devices
 *      and access to Lifecycle.
 */
@Deprecated
public abstract class FragmentManager {}

你可能感兴趣的:(Android)