Java源码示例:org.chromium.chrome.browser.snackbar.undo.UndoBarController

示例1
@Override
public void postInflationStartup() {
    super.postInflationStartup();

    // Critical path for startup. Create the minimum objects needed
    // to allow a blank screen draw (without depending on any native code)
    // and then yield ASAP.
    createTabModelSelectorImpl(getSavedInstanceState());

    if (isFinishing()) return;

    // Don't show the keyboard until user clicks in.
    getWindow().setSoftInputMode(
            WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN
            | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

    mContentContainer = (ViewGroup) findViewById(android.R.id.content);
    mControlContainer = (ToolbarControlContainer) findViewById(R.id.control_container);

    mUndoBarPopupController = new UndoBarController(this, mTabModelSelectorImpl,
            getSnackbarManager());
}
 
示例2
@Override
public void postInflationStartup() {
    super.postInflationStartup();

    // Critical path for startup. Create the minimum objects needed
    // to allow a blank screen draw (without depending on any native code)
    // and then yield ASAP.
    if (isFinishing()) return;

    // Don't show the keyboard until user clicks in.
    getWindow().setSoftInputMode(
            WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN
            | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

    mContentContainer = (ViewGroup) findViewById(android.R.id.content);
    mControlContainer = (ToolbarControlContainer) findViewById(R.id.control_container);

    mUndoBarPopupController = new UndoBarController(this, mTabModelSelectorImpl,
            getSnackbarManager());

    mVrShellDelegate = new VrShellDelegate(this);
}
 
示例3
@Override
public void postInflationStartup() {
    super.postInflationStartup();

    // Critical path for startup. Create the minimum objects needed
    // to allow a blank screen draw (without depending on any native code)
    // and then yield ASAP.
    if (isFinishing()) return;

    // Don't show the keyboard until user clicks in.
    getWindow().setSoftInputMode(
            WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN
            | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

    mContentContainer = (ViewGroup) findViewById(android.R.id.content);
    mControlContainer = (ToolbarControlContainer) findViewById(R.id.control_container);

    mUndoBarPopupController = new UndoBarController(this, mTabModelSelectorImpl,
            getSnackbarManager());
}