外部アプリなしでドキュメントを開くプログラムを作成したい。電話の向き(ピッチアンドロール)でドキュメントをスクロールするため、これが必要です。画面の下部にボタンを作成します。ボタンを押し続けると、ドキュメントもスクロールできます。ボタンを離すと、スクロールできません。そのため、外部アプリでドキュメントを開くと、ボタンが消え、sensorManagerも機能しません。
この問題を解決するためのアイデアを誰かに教えてください。または、外部アプリで開いたドキュメントをスクロールする方法、携帯電話の向きを誰かが考えていますか?
(私の英語でごめんなさい)
これは私のマニフェストです:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
package="com.example.orientationscrolling"
Android:versionCode="1"
Android:versionName="1.0" >
<uses-sdk
Android:minSdkVersion="8"
Android:targetSdkVersion="17" />
<uses-permission Android:name="Android.permission.INTERNET" />
<application
Android:allowBackup="true"
Android:icon="@drawable/ic_launcher"
Android:label="@string/app_name"
Android:theme="@style/AppTheme" >
<activity
Android:name="com.example.orientationscrolling.MainActivity"
Android:label="@string/app_name" >
<intent-filter>
<action Android:name="Android.intent.action.MAIN" />
<category Android:name="Android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
これは私のレイアウトです:
<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:orientation="vertical" >
<WebView
xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:id="@+id/webView1"
Android:layout_width="match_parent"
Android:layout_height="match_parent" />
<LinearLayout
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:gravity="bottom"
Android:orientation="vertical" >
<Button
Android:id="@+id/mybutt"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:textSize="25sp"
Android:text="Scroll!!"
Android:layout_gravity="right"/>
</LinearLayout>
これは私のコードです:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
button = (Button) findViewById( R.id.mybutt );
String pdf = "http://www.pc-hardware.hu/PDF/konfig.pdf";
String doc="<iframe src='http://docs.google.com/gview?embedded=true&url=http://www.pc-hardware.hu/PDF/konfig.pdf' width='100%' height='100%' style='border: none;'></iframe>";
webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setPluginsEnabled(true);
webView.getSettings().setAllowFileAccess(true);
webView.loadData( doc , "text/html", "UTF-8");
}
そのためには、カスタムライブラリを使用する必要があると思います。 this および this を参照してください。
ただし、別のアプリケーションを呼び出さずにPDFを表示する方法があります
これは、PDFドキュメントをAndroid webviewに埋め込む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"/>
_
this を参照してください
注意:さまざまなAndroidバージョンとの互換性の問題を認識していません
このアプローチの欠点は、インターネット接続が必要なことです。しかし、私はそれがあなたのニーズを満たすと思う
編集iframeのsrcとしてこれを試してください
_src="http://docs.google.com/gview?embedded=true&url=http://www.pc-hardware.hu/PDF/konfig.pdf"
_
wv.loadData( doc , "text/html", "UTF-8");
を試してください。両方とも私のために働く
Googleドキュメントに依存する上記の回答は、インターネットに接続している場合にのみ機能します。より良いオプションは、Android PdfRenderer クラスを使用することです。
サンプルアプリを試すことができます こちら 。
ここからソースコードをダウンロードします( Display PDF my inside inside my Android application )
この依存関係をグレードに追加:
compile 'com.github.barteksc:Android-pdf-viewer:2.0.3'
activity_main.xml
<RelativeLayout Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:background="#ffffff"
xmlns:Android="http://schemas.Android.com/apk/res/Android" >
<TextView
Android:layout_width="match_parent"
Android:layout_height="40dp"
Android:background="@color/colorPrimaryDark"
Android:text="View PDF"
Android:textColor="#ffffff"
Android:id="@+id/tv_header"
Android:textSize="18dp"
Android:gravity="center"></TextView>
<com.github.barteksc.pdfviewer.PDFView
Android:id="@+id/pdfView"
Android:layout_below="@+id/tv_header"
Android:layout_width="match_parent"
Android:layout_height="match_parent"/>
</RelativeLayout>
MainActivity.Java
package pdfviewer.pdfviewer;
import Android.app.Activity;
import Android.database.Cursor;
import Android.net.Uri;
import Android.provider.OpenableColumns;
import Android.support.v7.app.AppCompatActivity;
import Android.os.Bundle;
import Android.util.Log;
import Android.view.View;
import Android.widget.ImageView;
import Android.widget.RelativeLayout;
import com.github.barteksc.pdfviewer.PDFView;
import com.github.barteksc.pdfviewer.listener.OnLoadCompleteListener;
import com.github.barteksc.pdfviewer.listener.OnPageChangeListener;
import com.github.barteksc.pdfviewer.scroll.DefaultScrollHandle;
import com.shockwave.pdfium.PdfDocument;
import Java.util.List;
public class MainActivity extends Activity implements OnPageChangeListener,OnLoadCompleteListener{
private static final String TAG = MainActivity.class.getSimpleName();
public static final String SAMPLE_FILE = "Android_tutorial.pdf";
PDFView pdfView;
Integer pageNumber = 0;
String pdfFileName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
pdfView= (PDFView)findViewById(R.id.pdfView);
displayFromAsset(SAMPLE_FILE);
}
private void displayFromAsset(String assetFileName) {
pdfFileName = assetFileName;
pdfView.fromAsset(SAMPLE_FILE)
.defaultPage(pageNumber)
.enableSwipe(true)
.swipeHorizontal(false)
.onPageChange(this)
.enableAnnotationRendering(true)
.onLoad(this)
.scrollHandle(new DefaultScrollHandle(this))
.load();
}
@Override
public void onPageChanged(int page, int pageCount) {
pageNumber = page;
setTitle(String.format("%s %s / %s", pdfFileName, page + 1, pageCount));
}
@Override
public void loadComplete(int nbPages) {
PdfDocument.Meta meta = pdfView.getDocumentMeta();
printBookmarksTree(pdfView.getTableOfContents(), "-");
}
public void printBookmarksTree(List<PdfDocument.Bookmark> tree, String sep) {
for (PdfDocument.Bookmark b : tree) {
Log.e(TAG, String.format("%s %s, p %d", sep, b.getTitle(), b.getPageIdx()));
if (b.hasChildren()) {
printBookmarksTree(b.getChildren(), sep + "-");
}
}
}
}
ありがとう!
さて、私は以下が解決策だと思います
String doc="<iframe src='http://docs.google.com/viewer?url=http://www.example.com/yourfile.pdf&embedded=true' width='100%' height='100%' style='border: none;'></iframe>";
WebView wv = (WebView)findViewById(R.id.wv);
wv.setVisibility(WebView.VISIBLE);
wv.getSettings().setJavaScriptEnabled(true);
wv.getSettings().setAllowFileAccess(true);
wv.getSettings().setPluginState(WebSettings.PluginState.ON);
wv.setWebViewClient(new Callback());
wv.loadData(doc, "text/html", "UTF-8");
これがあなたを助けることを願っています:)