Android:如何创建 .doc、.ppt、.xls、.pdf 格式的文档编辑器? [关闭]
Posted
技术标签:
【中文标题】Android:如何创建 .doc、.ppt、.xls、.pdf 格式的文档编辑器? [关闭]【英文标题】:Android:How to create Document Editor with .doc , .ppt, .xls, .pdf format? [closed] 【发布时间】:2012-03-10 13:24:58 【问题描述】:我想创建一个编辑器,在其中我可以在阅读文档时对其进行编辑。 谁能建议如何开始这个项目?
【问题讨论】:
【参考方案1】:嗨,您如何编辑 PDF 文件。
您可以使用以下代码在手机上查看pdf和html页面。
您必须在布局文件夹中创建网页,并在活动中编写以下代码:
private WebView myWebView;
myWebView = (WebView) this.findViewById(R.id.webView);
private static final FrameLayout.LayoutParams ZOOM_PARAMS = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,ViewGroup.LayoutParams.WRAP_CONTENT,Gravity.BOTTOM);
FrameLayout mContentView = (FrameLayout) getWindow().
getDecorView().findViewById(android.R.id.content);
final View zoom = this.myWebView.getZoomControls();
mContentView.addView(zoom, ZOOM_PARAMS);
zoom.setVisibility(View.GONE);
String url = "http://marico.com/html/index.html";
String googleDocsUrl = "http://docs.google.com/viewer?url="+url;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(googleDocsUrl ), "text/html");
startActivity(intent);
this.myWebView.loadUrl("http://marico.com/html/index.html");
【讨论】:
以上是关于Android:如何创建 .doc、.ppt、.xls、.pdf 格式的文档编辑器? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
怎样在Android中解析doc,docx,xls,xlsx格式文
如何在 Angular Web 中显示 blob 内容(doc、ppt、xls)