我需要在自定义视图上从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()
}
}
答案 0 :(得分:1)
properties
用于fromUri()
可以使用的Uri
,例如具有ContentResolver
方案的{1>}。
如果您知道PDF很小,可以尝试使用content
而不是fromStream()
。否则,您将需要先下载PDF(例如,下载到fromUri()
),然后再使用getCacheDir()
,因为如果尝试使用fromFile()
,则可能会耗尽内存。
答案 1 :(得分:0)
这是对我有用的解决方案:
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