我需要在自定义视图中从Web打开PDF。我只需要PDF信息和后退按钮。
我见过以下库:https://github.com/barteksc/AndroidPdfViewer
我已经实现了这样,但不起作用。
我该怎么办?
布局
<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context=".ReaderActivity">
<com.github.barteksc.pdfviewer.PDFView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/pdfView"/>
</LinearLayout>
活动
class ReaderActivity : BaseAppCompatActivity()
{
override fun onCreate(savedInstanceState: Bundle?)
{
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_reader)
supportActionBar?.setDisplayHomeAsUpEnabled(true)
pdfView.fromUri(Uri.parse("https://si.ua.es/es/documentos/documentacion/pdf-s/mozilla12-pdf.pdf"))
.pageSnap(true)
.load()
}
}
fromUri()
是Uri
可以使用的ContentResolver
,例如content
计划。
如果您知道PDF非常小,您可以尝试使用fromStream()
而不是fromUri()
。否则,您将需要首先下载PDF(例如,到getCacheDir()
),然后使用fromFile()
,因为如果您尝试使用fromStream()
,可能会耗尽内存。
这是对我有用的解决方案:
val client = OkHttpClient()
val request = Request.Builder().url("URL TO PDF").build()
client.newCall(request).enqueue(object : Callback
{
@Throws(IOException::class)
override fun onResponse(call: Call, response: Response)
{
if (!response.isSuccessful)
{
throw IOException("Failed to download file: $response")
}
val stream = ByteArrayInputStream(response.body()?.bytes())
pdfView.fromStream(stream).load()
}
override fun onFailure(call: Call, e: IOException)
{
e.printStackTrace()
}
})
其中pdfView是从该库导入的元素:https://github.com/barteksc/AndroidPdfViewer