Java 类android.webkit.WebChromeClient.CustomViewCallback 实例源码

项目:android-project-gallery    文件:BrowserFragmentActivity.java   
public void onShowCustomView(View view, CustomViewCallback callback)
{
    if (myCallback != null)
    {
        myCallback.onCustomViewHidden();
        myCallback = null;
        return;
    }

    long id = Thread.currentThread().getId();
    Log.I("WidgetChromeClient", "rong debug in showCustomView Ex: " + id);

    ViewGroup parent = (ViewGroup) mWebView.getParent();
    String s = parent.getClass().getName();
    Log.I("WidgetChromeClient", "rong debug Ex: " + s);
    parent.removeView(mWebView);
    parent.addView(view);
    myView = view;
    myCallback = callback;
    // chromeClient = this ;
}
项目:android-project-wo2b    文件:BaseWebViewActivity.java   
public void onShowCustomView(View view, CustomViewCallback callback)
{
    if (myCallback != null)
    {
        myCallback.onCustomViewHidden();
        myCallback = null;
        return;
    }

    long id = Thread.currentThread().getId();
    Log.I("WidgetChromeClient", "rong debug in showCustomView Ex: " + id);

    ViewGroup parent = (ViewGroup) mWebView.getParent();
    String s = parent.getClass().getName();
    Log.I("WidgetChromeClient", "rong debug Ex: " + s);
    parent.removeView(mWebView);
    parent.addView(view);
    myView = view;
    myCallback = callback;
    // chromeClient = this ;
}
项目:FMTech    文件:zzju.java   
protected final void zza(View paramView, int paramInt, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  zzd localzzd = this.zzpX.zzhI();
  if (localzzd == null)
  {
    zzb.w("Could not get ad overlay when showing custom view.");
    paramCustomViewCallback.onCustomViewHidden();
    return;
  }
  localzzd.zzDJ = new FrameLayout(localzzd.mActivity);
  localzzd.zzDJ.setBackgroundColor(-16777216);
  localzzd.zzDJ.addView(paramView, -1, -1);
  localzzd.mActivity.setContentView(localzzd.zzDJ);
  localzzd.zzDP = true;
  localzzd.zzDK = paramCustomViewCallback;
  localzzd.zzDI = true;
  localzzd.setRequestedOrientation(paramInt);
}
项目:krakn    文件:XWalkCordovaWebView.java   
@Override
public void showCustomView(View view, 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) webview.getParent();
    parent.addView(view, COVER_SCREEN_GRAVITY_CENTER);

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

    // Finally show the custom view container.
    parent.setVisibility(View.VISIBLE);
    parent.bringToFront();
}
项目:krakn    文件:XWalkCordovaWebView.java   
@Override
public void showCustomView(View view, 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) webview.getParent();
    parent.addView(view, COVER_SCREEN_GRAVITY_CENTER);

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

    // Finally show the custom view container.
    parent.setVisibility(View.VISIBLE);
    parent.bringToFront();
}
项目:krakn    文件:XWalkCordovaWebView.java   
@Override
public void showCustomView(View view, 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) webview.getParent();
    parent.addView(view, COVER_SCREEN_GRAVITY_CENTER);

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

    // Finally show the custom view container.
    parent.setVisibility(View.VISIBLE);
    parent.bringToFront();
}
项目:krakn    文件:XWalkCordovaWebView.java   
@Override
public void showCustomView(View view, 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) webview.getParent();
    parent.addView(view, COVER_SCREEN_GRAVITY_CENTER);

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

    // Finally show the custom view container.
    parent.setVisibility(View.VISIBLE);
    parent.bringToFront();
}
项目:12306-android-Decompile    文件:CordovaWebView.java   
public void showCustomView(View paramView, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  Log.d("CordovaWebView", "showing Custom View");
  if (this.mCustomView != null)
  {
    paramCustomViewCallback.onCustomViewHidden();
    return;
  }
  this.mCustomView = paramView;
  this.mCustomViewCallback = paramCustomViewCallback;
  ViewGroup localViewGroup = (ViewGroup)getParent();
  localViewGroup.addView(paramView, COVER_SCREEN_GRAVITY_CENTER);
  setVisibility(8);
  localViewGroup.setVisibility(0);
  localViewGroup.bringToFront();
}
项目:12306-android-Decompile    文件:CordovaWebView.java   
public void showCustomView(View paramView, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  Log.d("CordovaWebView", "showing Custom View");
  if (this.mCustomView != null)
  {
    paramCustomViewCallback.onCustomViewHidden();
    return;
  }
  this.mCustomView = paramView;
  this.mCustomViewCallback = paramCustomViewCallback;
  ViewGroup localViewGroup = (ViewGroup)getParent();
  localViewGroup.addView(paramView, COVER_SCREEN_GRAVITY_CENTER);
  setVisibility(8);
  localViewGroup.setVisibility(0);
  localViewGroup.bringToFront();
}
项目:openxface-android    文件:XAppWebView.java   
/**
 * 显示HTML5视频自定义视图
 *
 * @param view
 * @param callback
 */
public void showCustomView(View view, CustomViewCallback callback) {
    // 如果存在一个view,则立即消除新建的view
    XLog.d(CLASS_NAME, "Showing Custom Video View");
    if (mCustomVideoView != null) {
        callback.onCustomViewHidden();
        return;
    }
    mCustomVideoView = view;
    mCustomViewCallback = callback;
    // 在它的container中增加CustomVideoView
    ViewGroup parent = (ViewGroup) this.getParent();
    parent.addView(view, COVER_SCREEN_GRAVITY_CENTER);
    // 隐藏CustomVideoView
    this.setVisibility(View.GONE);
    // 显示container
    parent.setVisibility(View.VISIBLE);
    parent.bringToFront();
}
项目:browser    文件:BrowserActivity.java   
@Override
public void onShowCustomView(View view, int requestedOrientation, CustomViewCallback callback) {
    if (view == null) {
        return;
    }
    if (mCustomView != null && callback != null) {
        callback.onCustomViewHidden();
        return;
    }
    try {
        view.setKeepScreenOn(true);
    } catch (SecurityException e) {
        Log.e(Constants.TAG, "WebView is not allowed to keep the screen on");
    }
    mOriginalOrientation = getRequestedOrientation();
    FrameLayout decor = (FrameLayout) getWindow().getDecorView();
    mFullscreenContainer = new FullscreenHolder(this);
    mCustomView = view;
    mFullscreenContainer.addView(mCustomView, COVER_SCREEN_PARAMS);
    decor.addView(mFullscreenContainer, COVER_SCREEN_PARAMS);
    setFullscreen(true);
    getCurrentWebView().setVisibility(View.GONE);
    if (view instanceof FrameLayout) {
        if (((FrameLayout) view).getFocusedChild() instanceof VideoView) {
            mVideoView = (VideoView) ((FrameLayout) view).getFocusedChild();
            mVideoView.setOnErrorListener(new VideoCompletionListener());
            mVideoView.setOnCompletionListener(new VideoCompletionListener());
        }
    }
    mCustomViewCallback = callback;
}
项目:youkes_browser    文件:BrowserActivity.java   
@Override
public void onShowCustomView(View view, int requestedOrientation, CustomViewCallback callback) {
    if (view == null) {
        return;
    }
    if (mCustomView != null && callback != null) {
        callback.onCustomViewHidden();
        return;
    }
    try {
        view.setKeepScreenOn(true);
    } catch (SecurityException e) {
        Log.e(Constants.TAG, "WebView is not allowed to keep the screen on");
    }
    mOriginalOrientation = getRequestedOrientation();
    FrameLayout decor = (FrameLayout) getWindow().getDecorView();
    mFullscreenContainer = new FullscreenHolder(this);
    mCustomView = view;
    mFullscreenContainer.addView(mCustomView, COVER_SCREEN_PARAMS);
    decor.addView(mFullscreenContainer, COVER_SCREEN_PARAMS);
    setFullscreen(true);
    getCurrentWebView().setVisibility(View.GONE);
    if (view instanceof FrameLayout) {
        if (((FrameLayout) view).getFocusedChild() instanceof VideoView) {
            mVideoView = (VideoView) ((FrameLayout) view).getFocusedChild();
            mVideoView.setOnErrorListener(new VideoCompletionListener());
            mVideoView.setOnCompletionListener(new VideoCompletionListener());
        }
    }
    mCustomViewCallback = callback;
}
项目:DeeBrowser    文件:BrowserActivity.java   
@Override
public void onShowCustomView(View view, CustomViewCallback callback) {
    if (view == null) {
        return;
    }
    if (mCustomView != null && callback != null) {
        callback.onCustomViewHidden();
        return;
    }
    try {
        view.setKeepScreenOn(true);
    } catch (SecurityException e) {
        Log.e(Constants.TAG, "WebView is not allowed to keep the screen on");
    }
    mOriginalOrientation = getRequestedOrientation();
    FrameLayout decor = (FrameLayout) getWindow().getDecorView();
    mFullscreenContainer = new FrameLayout(this);
    mFullscreenContainer.setBackgroundColor(ContextCompat.getColor(this, android.R.color.black));
    mCustomView = view;
    mFullscreenContainer.addView(mCustomView, COVER_SCREEN_PARAMS);
    decor.addView(mFullscreenContainer, COVER_SCREEN_PARAMS);
    setFullscreen(true, true);
    mCurrentView.setVisibility(View.GONE);
    if (view instanceof FrameLayout) {
        if (((FrameLayout) view).getFocusedChild() instanceof VideoView) {
            mVideoView = (VideoView) ((FrameLayout) view).getFocusedChild();
            mVideoView.setOnErrorListener(new VideoCompletionListener());
            mVideoView.setOnCompletionListener(new VideoCompletionListener());
        }
    }
    mCustomViewCallback = callback;
}
项目:DeeBrowser    文件:BrowserActivityInc.java   
@Override
public void onShowCustomView(View view, CustomViewCallback callback) {
    if (view == null) {
        return;
    }
    if (mCustomView != null && callback != null) {
        callback.onCustomViewHidden();
        return;
    }
    try {
        view.setKeepScreenOn(true);
    } catch (SecurityException e) {
        Log.e(Constants.TAG, "WebView is not allowed to keep the screen on");
    }
    mOriginalOrientation = getRequestedOrientation();
    FrameLayout decor = (FrameLayout) getWindow().getDecorView();
    mFullscreenContainer = new FrameLayout(this);
    mFullscreenContainer.setBackgroundColor(ContextCompat.getColor(this, android.R.color.black));
    mCustomView = view;
    mFullscreenContainer.addView(mCustomView, COVER_SCREEN_PARAMS);
    decor.addView(mFullscreenContainer, COVER_SCREEN_PARAMS);
    setFullscreen(true, true);
    mCurrentView.setVisibility(View.GONE);
    if (view instanceof FrameLayout) {
        if (((FrameLayout) view).getFocusedChild() instanceof VideoView) {
            mVideoView = (VideoView) ((FrameLayout) view).getFocusedChild();
            mVideoView.setOnErrorListener(new VideoCompletionListener());
            mVideoView.setOnCompletionListener(new VideoCompletionListener());
        }
    }
    mCustomViewCallback = callback;
}
项目:QuizUpWinner    文件:cy.java   
protected final void a(View paramView, int paramInt, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  bk localbk = this.gv.aB();
  if (localbk == null)
  {
    ct.v("Could not get ad overlay when showing custom view.");
    paramCustomViewCallback.onCustomViewHidden();
    return;
  }
  localbk.a(paramView, paramCustomViewCallback);
  localbk.setRequestedOrientation(paramInt);
}
项目:QuizUpWinner    文件:bk.java   
public final void a(View paramView, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  this.gy = new FrameLayout(this.gs);
  this.gy.setBackgroundColor(-16777216);
  this.gy.addView(paramView, -1, -1);
  this.gs.setContentView(this.gy);
  this.gz = paramCustomViewCallback;
}
项目:droidex    文件:ActivityWebView.java   
@Override
public void onShowCustomView(View view, CustomViewCallback callback) {
    mCustomViewCallback = callback;
    mTargetView.addView(view);
    mCustomView = view;
    mContentView.setVisibility(View.GONE);
    mTargetView.setVisibility(View.VISIBLE);
    mTargetView.bringToFront();
    getActionBar().hide();
}
项目:schoolapp    文件:WebViewFrag.java   
@Override
public void onShowCustomView(View view, CustomViewCallback callback) {
    mCustomViewCallback = callback;
    mTargetView.addView(view);
    mCustomView = view;
    mContentView.setVisibility(View.GONE);
    mTargetView.setVisibility(View.VISIBLE);
    mTargetView.bringToFront();
    ((ActionBarActivity)getActivity()).getSupportActionBar().hide();
}
项目:chromium_webview    文件:WebViewContentsClientAdapter.java   
@Override
public void onShowCustomView(View view, CustomViewCallback cb) {
    TraceEvent.begin();
    if (mWebChromeClient != null) {
        if (TRACE) Log.d(TAG, "onShowCustomView");
        mWebChromeClient.onShowCustomView(view, cb);
    }
    TraceEvent.end();
}
项目:android-project-gallery    文件:BrowserFragmentActivity.java   
@Override
public void onShowCustomView(View view, CustomViewCallback callback)
{
    this.mWebViewActivity.onShowCustomView(view, callback);
}
项目:Xndroid    文件:BrowserActivity.java   
@Override
public synchronized void onShowCustomView(View view, CustomViewCallback callback) {
    int requestedOrientation = mOriginalOrientation = getRequestedOrientation();
    onShowCustomView(view, callback, requestedOrientation);
}
项目:JumpGo    文件:BrowserActivity.java   
@Override
public synchronized void onShowCustomView(View view, CustomViewCallback callback) {
    int requestedOrientation = mOriginalOrientation = getRequestedOrientation();
    onShowCustomView(view, callback, requestedOrientation);
}
项目:android-project-wo2b    文件:BaseWebViewActivity.java   
@Override
public void onShowCustomView(View view, CustomViewCallback callback)
{
    this.mWebViewActivity.onShowCustomView(view, callback);
}
项目:FMTech    文件:zzjw.java   
public final void onShowCustomView(View paramView, int paramInt, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  zza(paramView, paramInt, paramCustomViewCallback);
}
项目:FMTech    文件:zzju.java   
public final void onShowCustomView(View paramView, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  zza(paramView, -1, paramCustomViewCallback);
}
项目:JumpGo    文件:BrowserActivity.java   
@Override
public synchronized void onShowCustomView(View view, CustomViewCallback callback) {
    int requestedOrientation = mOriginalOrientation = getRequestedOrientation();
    onShowCustomView(view, callback, requestedOrientation);
}
项目:QuizUpWinner    文件:cy.java   
public final void onShowCustomView(View paramView, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  a(paramView, -1, paramCustomViewCallback);
}
项目:QuizUpWinner    文件:da.java   
public final void onShowCustomView(View paramView, int paramInt, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  a(paramView, paramInt, paramCustomViewCallback);
}
项目:12306-android-Decompile    文件:CordovaChromeClient.java   
public void onShowCustomView(View paramView, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  this.appView.showCustomView(paramView, paramCustomViewCallback);
}
项目:12306-android-Decompile    文件:CordovaChromeClient.java   
public void onShowCustomView(View paramView, WebChromeClient.CustomViewCallback paramCustomViewCallback)
{
  this.appView.showCustomView(paramView, paramCustomViewCallback);
}
项目:COB    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);
项目:cordova-vuetify    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);
项目:keemob    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);
项目:keemob    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);
项目:alerta-fraude    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);
项目:localcloud_fe    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);
项目:localcloud_fe    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);
项目:siiMobilityAppKit    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);
项目:DinningShare    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);
项目:resin-configurator-client    文件:CordovaWebView.java   
/**
 * Deprecated in 4.0.0. Use your own View-toggling logic.
 */
@Deprecated
void showCustomView(View view, CustomViewCallback callback);