This commit is contained in:
Hamza417
2021-06-14 10:38:29 +05:30
parent 9705ae6c06
commit 3862aacd87
4 changed files with 8 additions and 12 deletions

1
.idea/gradle.xml generated
View File

@ -12,7 +12,6 @@
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/AndroidPdfViewer/android-pdf-viewer" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>

1
.idea/vcs.xml generated
View File

@ -2,6 +2,5 @@
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
<mapping directory="$PROJECT_DIR$/AndroidPdfViewer" vcs="Git" />
</component>
</project>

View File

@ -2,8 +2,8 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false"
android:background="@color/edgeEffect"
android:clipChildren="false"
android:clipToPadding="false">
<include layout="@layout/header_pdf" />
@ -11,18 +11,18 @@
<FrameLayout
android:id="@+id/pdf_container"
android:layout_width="match_parent"
android:padding="@dimen/dialog_padding"
android:clipToPadding="false"
android:clipChildren="false"
android:clickable="false"
android:layout_height="match_parent"
android:background="@color/edgeEffect"
android:layout_height="match_parent">
android:clickable="false"
android:clipChildren="false"
android:clipToPadding="false"
android:padding="@dimen/dialog_padding">
<com.github.barteksc.pdfviewer.PDFView
android:id="@+id/pdf_viewer"
android:background="@color/edgeEffect"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:background="@color/edgeEffect" />
</FrameLayout>

View File

@ -1,4 +1,2 @@
include ':android-pdf-viewer'
include ':app'
project(':android-pdf-viewer').projectDir = new File(rootDir, 'AndroidPdfViewer/android-pdf-viewer/')
rootProject.name = "Inure"