當前位置: 首頁>>代碼示例>>Java>>正文


Java OverlayPanelContent類代碼示例

本文整理匯總了Java中org.chromium.chrome.browser.compositor.bottombar.OverlayPanelContent的典型用法代碼示例。如果您正苦於以下問題:Java OverlayPanelContent類的具體用法?Java OverlayPanelContent怎麽用?Java OverlayPanelContent使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


OverlayPanelContent類屬於org.chromium.chrome.browser.compositor.bottombar包,在下文中一共展示了OverlayPanelContent類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: createNewOverlayPanelContent

import org.chromium.chrome.browser.compositor.bottombar.OverlayPanelContent; //導入依賴的package包/類
@Override
public OverlayPanelContent createNewOverlayPanelContent() {
    OverlayContentDelegate delegate = new OverlayContentDelegate() {
        /**
         * Track if a navigation/load is the first one for this content.
         */
        private boolean mIsInitialLoad = true;

        @Override
        public void onContentViewCreated(ContentViewCore contentView) {
            mContentViewDelegate.setOverlayPanelContentViewCore(contentView);

            WebContents distilledWebContents = contentView.getWebContents();
            if (distilledWebContents == null) return;

            WebContents sourceWebContents = mManagerDelegate.getBasePageWebContents();
            if (sourceWebContents == null) return;

            DomDistillerTabUtils.distillAndView(sourceWebContents, distilledWebContents);
        }

        @Override
        public void onContentViewDestroyed() {
            mContentViewDelegate.releaseOverlayPanelContentViewCore();
            mIsInitialLoad = true;
        }

        @Override
        public boolean shouldInterceptNavigation(ExternalNavigationHandler externalNavHandler,
                NavigationParams navigationParams) {
            // The initial load will be the distilled content; don't try to open a new tab if
            // this is the case. All other navigations on distilled pages will come from link
            // clicks.
            if (mIsInitialLoad) {
                mIsInitialLoad = false;
                return true;
            }
            if (!navigationParams.isExternalProtocol) {
                mManagerDelegate.createNewTab(navigationParams.url);
                return false;
            }
            return true;
        }
    };

    return new OverlayPanelContent(delegate, new OverlayContentProgressObserver(), mActivity);
}
 
開發者ID:rkshuai,項目名稱:chromium-for-android-56-debug-video,代碼行數:48,代碼來源:ReaderModePanel.java

示例2: createNewOverlayPanelContent

import org.chromium.chrome.browser.compositor.bottombar.OverlayPanelContent; //導入依賴的package包/類
@Override
public OverlayPanelContent createNewOverlayPanelContent() {
    return new OverlayPanelContent(mManagementDelegate.getOverlayContentDelegate(),
            new PanelProgressObserver(), mActivity);
}
 
開發者ID:rkshuai,項目名稱:chromium-for-android-56-debug-video,代碼行數:6,代碼來源:ContextualSearchPanel.java

示例3: createNewOverlayPanelContent

import org.chromium.chrome.browser.compositor.bottombar.OverlayPanelContent; //導入依賴的package包/類
@Override
public OverlayPanelContent createNewOverlayPanelContent() {
    OverlayContentDelegate delegate = new OverlayContentDelegate() {
        /**
         * Track if a navigation/load is the first one for this content.
         */
        private boolean mIsInitialLoad = true;

        @Override
        public void onContentViewCreated(ContentViewCore contentView) {
            mContentViewDelegate.setOverlayPanelContentViewCore(contentView);

            WebContents distilledWebContents = contentView.getWebContents();
            if (distilledWebContents == null) {
                closePanel(StateChangeReason.UNKNOWN, false);
                return;
            }

            WebContents sourceWebContents = mManagerDelegate.getBasePageWebContents();
            if (sourceWebContents == null) {
                closePanel(StateChangeReason.UNKNOWN, false);
                return;
            }

            DomDistillerTabUtils.distillAndView(sourceWebContents, distilledWebContents);
        }

        @Override
        public void onContentViewDestroyed() {
            mContentViewDelegate.releaseOverlayPanelContentViewCore();
            mIsInitialLoad = true;
        }

        @Override
        public boolean shouldInterceptNavigation(ExternalNavigationHandler externalNavHandler,
                NavigationParams navigationParams) {
            // The initial load will be the distilled content; don't try to open a new tab if
            // this is the case. All other navigations on distilled pages will come from link
            // clicks.
            if (mIsInitialLoad) {
                mIsInitialLoad = false;
                return true;
            }
            if (!navigationParams.isExternalProtocol) {
                mManagerDelegate.createNewTab(navigationParams.url);
                return false;
            }
            return true;
        }
    };

    return new OverlayPanelContent(delegate, new OverlayContentProgressObserver(), mActivity);
}
 
開發者ID:mogoweb,項目名稱:365browser,代碼行數:54,代碼來源:ReaderModePanel.java


注:本文中的org.chromium.chrome.browser.compositor.bottombar.OverlayPanelContent類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。