2017-10-07 10 views

答えて

1

だけのみ、さらに次のことができるようになることを意味しますが、Webブラウザから起動することができるようにしたい場合は、 `BROWSABLE`を含み、あなたのpdf活動に

<activity name=".YourPdfActivity"> 
<intent-filter> 
    <action android:name="android.intent.action.VIEW" /> 
    <category android:name="android.intent.category.DEFAULT" /> 
    <category android:name="android.intent.category.BROWSABLE" /> 
    <data android:mimeType="application/pdf" /> 
</intent-filter> 

+0

をこのインテントフィルタを追加'http' /' https''Uri'方式で動作します。 – CommonsWare

+0

開く必要があるファイルはどこにありますか? –

+0

あなたのonCreate()メソッドでは、getIntent()。getData()を呼び出してファイルuriにアクセスし、開く –

関連する問題