からのサポートを使用してAndroid WebViewに PDF ドキュメントを埋め込む Android アプリで PDF を表示する別の方法があります。http://docs.google.com/viewer
擬似
String doc="<iframe src='http://docs.google.com/viewer?url=+location to your PDF File+'
width='100%' height='100%'
style='border: none;'></iframe>";
サンプルを以下に示します
String doc="<iframe src='http://docs.google.com/viewer?url=http://www.iasted.org/conferences/formatting/presentations-tips.ppt&embedded=true'
width='100%' height='100%'
style='border: none;'></iframe>";
コード
WebView wv = (WebView)findViewById(R.id.webView);
wv.getSettings().setJavaScriptEnabled(true);
wv.getSettings().setPluginsEnabled(true);
wv.getSettings().setAllowFileAccess(true);
wv.loadUrl(doc);
//wv.loadData( doc, "text/html", "UTF-8");
そしてマニフェストで提供する
<uses-permission android:name="android.permission.INTERNET"/>
これを見る
注意 : Android のさまざまなバージョンとの互換性の問題については認識していません