当前位置: 首页>>代码示例>>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;未经允许,请勿转载。