
[英]How to open excel, doc files with intent from my app in MS-Excel or MS-Word - Android
[英]How to open Excel, .doc files in Webview in Android?
如何在 Android webview 中打开 Excel 和 .doc 文件。 谷歌文档可以支持吗?
是的,Google doc 支持您显示 doc 或 excel、pdf、txt 或其他格式。
WebView urlWebView = (WebView)findViewById(R.id.containWebView);
urlWebView.setWebViewClient(new AppWebViewClients());
urlWebView.getSettings().setJavaScriptEnabled(true);
urlWebView.getSettings().setUseWideViewPort(true);
urlWebView.loadUrl("http://docs.google.com/gview?embedded=true&url="
+ "YOUR_DOC_URL_HERE");
public class AppWebViewClients extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
// TODO Auto-generated method stub
view.loadUrl(url);
return true;
}
@Override
public void onPageFinished(WebView view, String url) {
// TODO Auto-generated method stub
super.onPageFinished(view, url);
}
}
如果你想从内部存储打开文档文件,比如file:///data/user/0/com.sample.example/files/documents/sample.docx那么你不能使用
urlWebView.loadUrl("http://docs.google.com/gview?embedded=true&url="+"YOUR_DOC_URL_HERE");
您必须从外部应用程序(如 google docs、MS Word 等)打开 docx 文件,为此您可以使用FileProvider
在 AndroidManifest.xml 文件中添加<provider>
。
<application>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.sample.example.provider" // you have to provide your package name here add add .provider after your package name
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
添加res/xml/file_paths.xml文件
<?xml version="1.0" encoding="utf-8"?>
<paths>
<root-path name="root" path="." />
</paths>
最后在MainActivity.java文件中添加打开 docx 文件的代码
StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
StrictMode.setVmPolicy(builder.build());
builder.detectFileUriExposure();
Uri docUri = FileProvider.getUriForFile(getApplicationContext(),
"com.sample.example.provider",
new File("/data/user/0/com.sample.example/files/documents/sample.docx")); // same as defined in Manifest file in android:authorities="com.sample.example.provider"
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(docUri, "application/msword");
try{
intent.setFlags(FLAG_GRANT_READ_URI_PERMISSION | FLAG_GRANT_WRITE_URI_PERMISSION);
Intent chooser = Intent.createChooser(intent,"Open With..");
startActivity(chooser);
} catch (ActivityNotFoundException e) {
//user does not have a pdf viewer installed
Log.d(LOG_TAG, "shouldOverrideUrlLoading: " + e.getLocalizedMessage());
Toast.makeText(MainActivity.this, "No application to open file", Toast.LENGTH_SHORT).show();
}
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.