我是android新手。我正在使用JoanZapata安卓库在我的应用程序中查看pdf。一切都运行正常,但在缩放后我无法滚动页面。
导致这种情况的原因是什么?
如果您知道,请向我推荐任何其他图书馆。
我已经检查了Android barteksc / AndroidPdfViewer它非常冗长(20mb)
的更新:
java代码我在哪里显示pdf
public class SecondActivity extends AppCompatActivity {
PDFView pdfView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
pdfView= (PDFView) findViewById(R.id.pdfView);
File pdfFile = new File(getCacheDir(),RecyclerViewAdapter.name);
pdfView.fromFile(pdfFile).swipeVertical(true).load(); }}
//我的xml代码看起来像这样
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android" >
<com.joanzapata.pdfview.PDFView
android:id="@+id/pdfView"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</RelativeLayout>