本文整理汇总了Java中android.webkit.WebChromeClient.CustomViewCallback方法的典型用法代码示例。如果您正苦于以下问题:Java WebChromeClient.CustomViewCallback方法的具体用法?Java WebChromeClient.CustomViewCallback怎么用?Java WebChromeClient.CustomViewCallback使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.webkit.WebChromeClient
的用法示例。
在下文中一共展示了WebChromeClient.CustomViewCallback方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: showCustomView
import android.webkit.WebChromeClient; //导入方法依赖的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.webkit.WebChromeClient; //导入方法依赖的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: onShowCustomView
import android.webkit.WebChromeClient; //导入方法依赖的package包/类
@Override
public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) {
parentEngine.getCordovaWebView().showCustomView(view, callback);
}
示例4: onShowCustomView
import android.webkit.WebChromeClient; //导入方法依赖的package包/类
@Override
public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) {
this.appView.showCustomView(view, callback);
}
示例5: onShowCustomView
import android.webkit.WebChromeClient; //导入方法依赖的package包/类
@Override
public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) {
mWebVideoDelegate.onShowCustomView(view, callback);
}
示例6: onShowCustomView
import android.webkit.WebChromeClient; //导入方法依赖的package包/类
void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback);