• 1000 'не запускается вообще, и иногда он показывает белый экран менее секунды, а затем вылетает.
Не могу понять, что здесь не так, мои зависимости:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
реализация' androidx.constraintlayout : constraintlayout: 1.1.3 '
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
Tha MainActivity:
package com.example.pdfviewer;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import com.github.barteksc.pdfviewer.PDFView;
public class MainActivity extends AppCompatActivity {
PDFView pdfView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate (savedInstanceState);
setContentView (R.layout.activity_main);
pdfView = (PDFView)findViewById (R.id.pdfView);
pdfView.fromAsset ("hello.pdf").load ();
}
}
activity_main. xml
<?xml version="1.0" encoding="utf-8"?>
<RealativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<com.github.barteksc.pdfviewer.PDFView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/pdfView" >
</com.github.barteksc.pdfviewer.PDFView>
</RealativeLayout>