Java Code Examples for com.tencent.smtt.sdk.WebChromeClient#FileChooserParams

The following examples show how to use com.tencent.smtt.sdk.WebChromeClient#FileChooserParams . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: x5_MainActivity.java    From stynico with MIT License 5 votes vote down vote up
@Override
      public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, WebChromeClient.FileChooserParams fileChooserParams)
{
          uploadMessageAboveL = filePathCallback;
          openImageChooserActivity();
          return true;
      }
 
Example 2
Source File: x5_MainActivity.java    From styT with Apache License 2.0 4 votes vote down vote up
@Override
public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, WebChromeClient.FileChooserParams fileChooserParams) {

    return true;
}
 
Example 3
Source File: FileUpLoadChooserImpl.java    From AgentWebX5 with Apache License 2.0 4 votes vote down vote up
public Builder setFileChooserParams(WebChromeClient.FileChooserParams fileChooserParams) {
    mFileChooserParams = fileChooserParams;
    return this;
}
 
Example 4
Source File: WebChromeClientListener.java    From JsBridge with MIT License 4 votes vote down vote up
@Override
public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> valueCallback, WebChromeClient.FileChooserParams fileChooserParams) {
    return false;
}
 
Example 5
Source File: OnWebChromeClientListener.java    From JsBridge with MIT License votes vote down vote up
boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> valueCallback, WebChromeClient.FileChooserParams fileChooserParams);