本文整理匯總了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;
}
}