Android:如何使用.doc,.ppt,.xls,.pdf格式创建文档编辑器?

时间:2012-02-20 06:42:20

标签: android pdf document

我想创建一个编辑器,我可以在阅读时编辑文档。 谁能建议如何从这个项目开始?

1 个答案:

答案 0 :(得分:0)

您好如何编辑PDF文件。

您可以使用以下代码查看移动设备上的pdf和HTML页面。

您必须在布局文件夹中创建Web,并在活动内部编写代码:

 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");