Android 使用webview 打开浏览ppt文件

参考: 1. https://github.com/Victory-Over/SuperWeb 

            2. https://github.com/yangchong211/YCWebView

参考大神框架的使用:

1,SuperWeb 超级浏览器

基于腾讯X5内核

目前已有功能:

  • 1、文件浏览(支持pdf/ppt/doc/excel/txt)
  • 2、文件上传(JS)
  • 3、文件下载
  • 4、Android与JS交互
  • 5、自定义交互(进度条、下拉回弹)
  • 6、视频播放

添加依赖和配置

  • 根目录build.gradle文件添加如下配置:
allprojects {
    repositories {
       	maven { url 'https://jitpack.io' }
    }
}
  • APP目录build.gradle文件添加如下配置:
dependencies {
     implementation 'com.github.Victory-Over:SuperWeb:v1.0.2
}
  • 申请权限:
    
    
    
    
    
    
    
    
    

 

2、YCWebView

导入依赖

implementation 'cn.yc:WebViewLib:1.1.6'

项目初始化

X5WebUtils.init(this);

使用

 

你可能感兴趣的:(坑,Android)