├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── gradle.xml ├── libraries │ ├── Gradle__android_arch_core_common_1_1_0_jar.xml │ ├── Gradle__android_arch_core_runtime_1_1_0.xml │ ├── Gradle__android_arch_lifecycle_common_1_1_0_jar.xml │ ├── Gradle__android_arch_lifecycle_livedata_core_1_1_0.xml │ ├── Gradle__android_arch_lifecycle_runtime_1_1_0.xml │ ├── Gradle__android_arch_lifecycle_viewmodel_1_1_0.xml │ ├── Gradle__com_android_support_animated_vector_drawable_27_1_1.xml │ ├── Gradle__com_android_support_appcompat_v7_27_1_1.xml │ ├── Gradle__com_android_support_cardview_v7_27_1_1.xml │ ├── Gradle__com_android_support_recyclerview_v7_27_1_1.xml │ ├── Gradle__com_android_support_support_annotations_27_1_1_jar.xml │ ├── Gradle__com_android_support_support_compat_27_1_1.xml │ ├── Gradle__com_android_support_support_core_ui_27_1_1.xml │ ├── Gradle__com_android_support_support_core_utils_27_1_1.xml │ ├── Gradle__com_android_support_support_fragment_27_1_1.xml │ ├── Gradle__com_android_support_support_vector_drawable_27_1_1.xml │ ├── Gradle__commons_logging_commons_logging_1_2_jar.xml │ ├── Gradle__org_apache_pdfbox_fontbox_2_0_0_RC3_jar.xml │ └── Gradle__org_apache_pdfbox_pdfbox_2_0_0_RC3_jar.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml ├── vcs.xml └── workspace.xml ├── README.md ├── README.txt ├── app ├── app.iml ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── app │ │ └── pdfcreation │ │ ├── adapter │ │ └── PdfCreateAdapter.java │ │ ├── model │ │ └── PDFModel.java │ │ ├── ui │ │ └── PdfCreationActivity.java │ │ └── utils │ │ ├── AppUtils.java │ │ ├── PDFCreationUtils.java │ │ └── PdfBitmapCache.java │ └── res │ ├── drawable │ ├── bg_pdf_creation.xml │ ├── ic_launcher.png │ ├── pdf_half_star_2.png │ ├── pdf_half_star_3.png │ ├── pdf_half_star_4.png │ ├── pdf_half_star_5.png │ ├── pdf_half_star_6.png │ ├── pdf_star_1.png │ ├── pdf_star_2.png │ ├── pdf_star_3.png │ ├── pdf_star_4.png │ ├── pdf_star_5.png │ └── pdf_star_6.png │ ├── layout │ ├── activity_pdf_creation.xml │ ├── item_pdf_creation.xml │ └── pdf_creation_view.xml │ ├── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── path.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── pdf-creation-by-xml-android.iml ├── screen.gif ├── screen ├── ss_0.png ├── ss_1.png ├── ss_2.png └── ss_4.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_core_common_1_1_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__android_arch_core_common_1_1_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_core_runtime_1_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__android_arch_core_runtime_1_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_lifecycle_common_1_1_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__android_arch_lifecycle_common_1_1_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_lifecycle_livedata_core_1_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__android_arch_lifecycle_livedata_core_1_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_lifecycle_runtime_1_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__android_arch_lifecycle_runtime_1_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_lifecycle_viewmodel_1_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__android_arch_lifecycle_viewmodel_1_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_animated_vector_drawable_27_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_animated_vector_drawable_27_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_appcompat_v7_27_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_appcompat_v7_27_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_cardview_v7_27_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_cardview_v7_27_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_recyclerview_v7_27_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_recyclerview_v7_27_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_annotations_27_1_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_support_annotations_27_1_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_compat_27_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_support_compat_27_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_core_ui_27_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_support_core_ui_27_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_core_utils_27_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_support_core_utils_27_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_fragment_27_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_support_fragment_27_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_vector_drawable_27_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__com_android_support_support_vector_drawable_27_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__commons_logging_commons_logging_1_2_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__commons_logging_commons_logging_1_2_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_apache_pdfbox_fontbox_2_0_0_RC3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__org_apache_pdfbox_fontbox_2_0_0_RC3_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_apache_pdfbox_pdfbox_2_0_0_RC3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/libraries/Gradle__org_apache_pdfbox_pdfbox_2_0_0_RC3_jar.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/README.txt -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/app/pdfcreation/adapter/PdfCreateAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/java/com/app/pdfcreation/adapter/PdfCreateAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/pdfcreation/model/PDFModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/java/com/app/pdfcreation/model/PDFModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/pdfcreation/ui/PdfCreationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/java/com/app/pdfcreation/ui/PdfCreationActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/pdfcreation/utils/AppUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/java/com/app/pdfcreation/utils/AppUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/pdfcreation/utils/PDFCreationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/java/com/app/pdfcreation/utils/PDFCreationUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/app/pdfcreation/utils/PdfBitmapCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/java/com/app/pdfcreation/utils/PdfBitmapCache.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_pdf_creation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/bg_pdf_creation.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_half_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_half_star_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_half_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_half_star_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_half_star_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_half_star_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_half_star_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_half_star_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_half_star_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_half_star_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_star_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_star_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_star_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_star_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_star_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_star_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_star_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_star_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/drawable/pdf_star_6.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pdf_creation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/layout/activity_pdf_creation.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_pdf_creation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/layout/item_pdf_creation.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/pdf_creation_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/layout/pdf_creation_view.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/app/src/main/res/xml/path.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /pdf-creation-by-xml-android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/pdf-creation-by-xml-android.iml -------------------------------------------------------------------------------- /screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/screen.gif -------------------------------------------------------------------------------- /screen/ss_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/screen/ss_0.png -------------------------------------------------------------------------------- /screen/ss_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/screen/ss_1.png -------------------------------------------------------------------------------- /screen/ss_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/screen/ss_2.png -------------------------------------------------------------------------------- /screen/ss_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeshbsa/pdf-creation-by-xml-android/HEAD/screen/ss_4.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------