无法在我的网页浏览中下载或查看PDF和文档文件,如Word和Excel

时间:2015-05-28 07:21:46

标签: android excel pdf ms-word

我在android studio中使用webview创建了一个项目,除了一些错误外,一切正常。

  1. 无法查看或下载XML或PDF文件。
  2. 当我改变设备的方向时,当前网页进入主页。
  3. 进度条仅适用于正面网页。
  4. 请帮帮我。

    我正试图在最后一周对它们进行排序。

    谢谢。

    MainActivity Java代码

    package com.xxxxxxx.xxxx;
    
    import android.app.Activity;
    import android.os.Bundle;
    import android.webkit.WebSettings;
    import android.webkit.WebView;
    
    public class MainActivity extends Activity {
    WebView mywebview;
    
     @Override
     protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mywebview = (WebView) findViewById(R.id.webview);
        mywebview.loadUrl("http://www.pccegoa.org");
        WebSettings webSettings = mywebview.getSettings();
        webSettings.setJavaScriptEnabled(true);
    
           mywebview.getSettings();
           setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN);
            mywebview.getSettings().setLoadWithOverviewMode(true);
            mywebview.getSettings().setUseWideViewPort(true);
            mywebview.getSettings().setBuiltInZoomControls(true);
            mywebview.setWebViewClient(new ourViewClient());
        }
    
         @Override
          public void onBackPressed (){
        if(mywebview.canGoBack()) mywebview.goBack();
        else super.onBackPressed();
         }
          }
    

    myViewClient java文件

        package com.xxxxxxxx.xxxx;
        import android.webkit.WebView;
        import android.webkit.WebViewClient;
    
        public class ourViewClient extends WebViewClient {
        @Override
       public boolean shouldOverrideUrlLoading(WebView v, String url)
        {
        v.loadUrl(url);
        return true;}}
    

    activity_Main文件

      <RelativeLayout      xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"        android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context=".MainActivity">
    
     <WebView
        android:id="@+id/webview"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_width="match_parent"
        android:layout_height="match_parent">  
       </WebView>
    
     </RelativeLayout>
    

0 个答案:

没有答案