本文整理汇总了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();
}
示例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();
}
示例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;
}
}