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


Java ViewGroup.bringToFront方法代碼示例

本文整理匯總了Java中android.view.ViewGroup.bringToFront方法的典型用法代碼示例。如果您正苦於以下問題:Java ViewGroup.bringToFront方法的具體用法?Java ViewGroup.bringToFront怎麽用?Java ViewGroup.bringToFront使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.view.ViewGroup的用法示例。


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

示例1: showCustomView

import android.view.ViewGroup; //導入方法依賴的package包/類
public void showCustomView(View view, WebChromeClient.CustomViewCallback callback) {
    // This code is adapted from the original Android Browser code, licensed under the Apache License, Version 2.0
    Log.d(TAG, "showing Custom View");
    // if a view already exists then immediately terminate the new one
    if (mCustomView != null) {
        callback.onCustomViewHidden();
        return;
    }
    
    // Store the view and its callback for later (to kill it properly)
    mCustomView = view;
    mCustomViewCallback = callback;
    
    // Add the custom view to its container.
    ViewGroup parent = (ViewGroup) this.getParent();
    parent.addView(view, COVER_SCREEN_GRAVITY_CENTER);
    
    // Hide the content view.
    this.setVisibility(View.GONE);
    
    // Finally show the custom view container.
    parent.setVisibility(View.VISIBLE);
    parent.bringToFront();
}
 
開發者ID:aabognah,項目名稱:LoRaWAN-Smart-Parking,代碼行數:25,代碼來源:CordovaWebView.java

示例2: showCustomView

import android.view.ViewGroup; //導入方法依賴的package包/類
@Override
@Deprecated
public void showCustomView(View view, WebChromeClient.CustomViewCallback callback) {
    // This code is adapted from the original Android Browser code, licensed under the Apache License, Version 2.0
    LOG.d(TAG, "showing Custom View");
    // if a view already exists then immediately terminate the new one
    if (mCustomView != null) {
        callback.onCustomViewHidden();
        return;
    }

    // Store the view and its callback for later (to kill it properly)
    mCustomView = view;
    mCustomViewCallback = callback;

    // Add the custom view to its container.
    ViewGroup parent = (ViewGroup) engine.getView().getParent();
    parent.addView(view, new FrameLayout.LayoutParams(
            ViewGroup.LayoutParams.MATCH_PARENT,
            ViewGroup.LayoutParams.MATCH_PARENT,
            Gravity.CENTER));

    // Hide the content view.
    engine.getView().setVisibility(View.GONE);

    // Finally show the custom view container.
    parent.setVisibility(View.VISIBLE);
    parent.bringToFront();
}
 
開發者ID:Andy-Ta,項目名稱:COB,代碼行數:30,代碼來源:CordovaWebViewImpl.java

示例3: goBack

import android.view.ViewGroup; //導入方法依賴的package包/類
/**
 * Pretty important method. This is responsible for handling the back events for the entire stack
 * @return true if back was handled
 */
@Override
public boolean goBack() {
    if (currentView instanceof Reversible && ((Reversible) currentView).onBack()){
        return true;
    }

    if (s.nodeStack.size() > 1) {
        final ViewGroup tempView = currentView;
        final BackStackNode tempNode = s.nodeStack.pop();
        final BackStackNode backStackNode = s.nodeStack.peek();

        if (tempNode.shouldRetain){
            retainMap.remove(s.nodeStack.size());
        }

        if (!backStackNode.shouldRetain) {
            currentView = addView(backStackNode);
        } else {
            Timber.d(retainMap.size() + "");
            currentView = retainMap.get(s.nodeStack.size() - 1).retainedView;
        }
        enable(currentView);

        if (tempNode.removeAnimator != null) {
            tempView.bringToFront();
            tempNode.removeAnimator.animate(tempView, new Emitter() {
                @Override
                public void done() {
                    forceRemoveView(s.nodeStack.peek(), tempView);
                }
            });
        } else {
            forceRemoveView(s.nodeStack.peek(), tempView);
        }

        return true;
    } else {
        return false;
    }
}
 
開發者ID:kevinwang5658,項目名稱:backstack,代碼行數:45,代碼來源:LinearBackStack.java


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