我必須在應用程序中顯示來自遠程URL鏈接的不同類型的文檔。我使用谷歌文件在網頁視圖這樣在android web視圖中使用google doc顯示.DOCX文件給出錯誤
private WebView mWvHome = (WebView) view.findViewById(R.id.wv_home);
mWvHome.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress) {
}
});
mWvHome.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return false;
}
@Override
public void onReceivedSslError(WebView view, final SslErrorHandler handler, SslError error) {
}
});
mWvHome.getSettings().setJavaScriptEnabled(true); // enable javascript
//Pasting a Fixed URL link to the file I am getting this Error.
mWvHome.loadUrl("http://docs.google.com/gview?embedded=true&url=http://followitdc.cloudapp.net/FollowitMediaAPIv4/images/bb629006-d930-4fbe-b9ec-91895dc5133c.docx");
這是我的佈局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white">
<ProgressBar
android:id="@+id/progress"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="@dimen/margin_normal"
android:layout_alignParentTop="true"
android:max="100"
android:progress="0"
android:progressDrawable="@drawable/custom_progressbar"
android:visibility="visible" />
<WebView
android:id="@+id/wv_home"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/progress" />
<RelativeLayout
android:id="@+id/rl_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/progress"
android:background="@color/white">
<ProgressBar
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
</RelativeLayout>
</RelativeLayout>
裝載正從谷歌文檔這個響應後。
小於2MB .docx格式的文件加載某些文件小於2MB也沒有加載。這是什麼問題?它是文件大小問題還是文件錯誤?由於文件在Google文檔聯機編輯器中以及在Microsoft Word上正常工作。任何幫助將不勝感激。
http://docs.google.com/gview?embedded=true&url這不適用於某些android設備。 – MathaN
我應該怎麼做才能修復它@MathaN –
如果您有後端團隊告訴他們給出鏈接來閱讀文檔文件。會好起來的。我爲我的申請做了同樣的事情。 – MathaN