├── .classpath ├── .gitignore ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── Android-Text-to-PDF-master.iml ├── README.md ├── app ├── app.iml ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ ├── androidTest7.iml │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── tag │ │ │ │ │ └── texttopdf │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ ├── buildConfig6.iml │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── tag │ │ │ │ └── texttopdf │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ ├── debug │ │ │ └── com │ │ │ │ └── tag │ │ │ │ └── texttopdf │ │ │ │ └── R.java │ │ │ └── r21.iml │ ├── intermediates │ │ ├── classes │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── tag │ │ │ │ └── texttopdf │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── MainActivity.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$menu.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ └── R.class │ │ ├── dex │ │ │ └── debug │ │ │ │ └── classes.dex │ │ ├── incremental │ │ │ ├── aidl │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ └── debug │ │ │ │ │ └── dependency.store │ │ │ ├── mergeAssets │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ └── mergeResources │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ │ └── debug │ │ │ │ └── merger.xml │ │ ├── manifests │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── debug.iml │ │ │ └── full │ │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── debug.iml │ │ ├── pre-dexed │ │ │ └── debug │ │ │ │ ├── itextpdf-5.3.3-0226b2cc4142acddf11d26e5c2d54fc6d7c76bd1.jar │ │ │ │ └── support-v4-18.0.0-cf9588689f34839ba261eb537ba250e86619aced.jar │ │ ├── res │ │ │ └── debug │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_action_search.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_action_search.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_action_search.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ │ ├── menu │ │ │ │ └── main.xml │ │ │ │ ├── values-large │ │ │ │ └── values-large.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ └── resources │ │ │ ├── resources-debug-androidTest.ap_ │ │ │ └── resources-debug.ap_ │ └── outputs │ │ ├── apk │ │ ├── app-debug-unaligned.apk │ │ └── app-debug.apk │ │ └── logs │ │ └── manifest-merger-debug-report.txt ├── libs │ └── itextpdf-5.3.3.jar └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── tag │ │ └── texttopdf │ │ └── MainActivity.java │ ├── main6.iml │ └── res │ ├── drawable-hdpi │ ├── ic_action_search.png │ └── ic_launcher.png │ ├── drawable-ldpi │ └── ic_launcher.png │ ├── drawable-mdpi │ ├── ic_action_search.png │ └── ic_launcher.png │ ├── drawable-xhdpi │ ├── ic_action_search.png │ └── ic_launcher.png │ ├── layout │ └── main.xml │ ├── menu │ └── main.xml │ ├── values-large │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── build └── intermediates │ ├── dex-cache │ └── cache.xml │ └── gradle_project_sync_data.bin ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── local.properties └── settings.gradle /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | TextToPDF 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 3 | org.eclipse.jdt.core.compiler.compliance=1.5 4 | org.eclipse.jdt.core.compiler.source=1.5 5 | -------------------------------------------------------------------------------- /Android-Text-to-PDF-master.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Android-Text-to-PDF 2 | =================== 3 | 4 | Generate PDF file in Android Code Sample 5 | 6 | 7 | You can finde complete tutorial on how to use the code repo here : ANDROID – TEXT TO PDF 8 | 9 | This Tutorial has been presented by The App Guruz - One of the best Android App Development Company in India 10 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 8 5 | buildToolsVersion "22.0.1" 6 | 7 | defaultConfig { 8 | applicationId "com.tag.texttopdf" 9 | minSdkVersion 8 10 | targetSdkVersion 15 11 | compileOptions { 12 | sourceCompatibility JavaVersion.VERSION_1_5 13 | targetCompatibility JavaVersion.VERSION_1_5 14 | } 15 | } 16 | 17 | buildTypes { 18 | release { 19 | minifyEnabled false 20 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 21 | } 22 | } 23 | } 24 | 25 | dependencies { 26 | compile 'com.android.support:support-v4:18.0.0' 27 | compile files('libs/itextpdf-5.3.3.jar') 28 | } 29 | -------------------------------------------------------------------------------- /app/build/generated/source/buildConfig/androidTest/androidTest7.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/build/generated/source/buildConfig/androidTest/debug/com/tag/texttopdf/test/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.tag.texttopdf.test; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.tag.texttopdf.test"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = -1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /app/build/generated/source/buildConfig/buildConfig6.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/build/generated/source/buildConfig/debug/com/tag/texttopdf/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.tag.texttopdf; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.tag.texttopdf"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/com/tag/texttopdf/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.tag.texttopdf; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class dimen { 14 | public static final int padding_large=0x7f040000; 15 | public static final int padding_medium=0x7f040001; 16 | public static final int padding_small=0x7f040002; 17 | } 18 | public static final class drawable { 19 | public static final int ic_action_search=0x7f020000; 20 | public static final int ic_launcher=0x7f020001; 21 | } 22 | public static final class id { 23 | public static final int LinearLayout1=0x7f080000; 24 | public static final int menu_settings=0x7f080002; 25 | public static final int textView1=0x7f080001; 26 | } 27 | public static final class layout { 28 | public static final int main=0x7f030000; 29 | } 30 | public static final class menu { 31 | public static final int main=0x7f070000; 32 | } 33 | public static final class string { 34 | public static final int app_name=0x7f050000; 35 | public static final int hello_world=0x7f050001; 36 | public static final int menu_settings=0x7f050002; 37 | public static final int title_activity_main=0x7f050003; 38 | } 39 | public static final class style { 40 | public static final int AppTheme=0x7f060000; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/build/generated/source/r/r21.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/BuildConfig.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/MainActivity.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/R$attr.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/R$dimen.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/R$drawable.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/R$id.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/R$layout.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/R$menu.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/R$string.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/R$style.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/tag/texttopdf/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/classes/debug/com/tag/texttopdf/R.class -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theappguruz/Android-Text-to-PDF/911fb2be22dbbc0222963e66035ba5de5420fde1/app/build/intermediates/dex/debug/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/incremental/aidl/androidTest/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeResources/androidTest/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeResources/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | 8dp8dp16dpPDFTextToPDFHello world!Settings