├── PrintProject ├── .idea │ ├── .name │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── vcs.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── gradle.xml │ ├── compiler.xml │ └── misc.xml ├── app │ ├── .gitignore │ ├── libs │ │ └── RTDriver.jar │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ ├── pos_printer.png │ │ │ │ │ └── pos_printer_offliine.png │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── styles.xml │ │ │ │ │ └── strings.xml │ │ │ │ ├── layout │ │ │ │ │ ├── list_layout_bluetooth_device.xml │ │ │ │ │ ├── bluetooth_printer_activity_custom_title.xml │ │ │ │ │ ├── bluetooth_device_list.xml │ │ │ │ │ └── bluetooth_printer_activity.xml │ │ │ │ ├── values-v21 │ │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ └── menu │ │ │ │ │ └── menu_scrolling.xml │ │ │ ├── java │ │ │ │ └── printproject │ │ │ │ │ └── com │ │ │ │ │ ├── utility │ │ │ │ │ └── Utility.java │ │ │ │ │ ├── printproject │ │ │ │ │ ├── StaticValue.java │ │ │ │ │ ├── PrintReceipt.java │ │ │ │ │ ├── BluetoothPrinterActivity.java │ │ │ │ │ └── DeviceListActivity.java │ │ │ │ │ └── model │ │ │ │ │ └── SalesModel.java │ │ │ └── AndroidManifest.xml │ │ ├── test │ │ │ └── java │ │ │ │ └── printproject │ │ │ │ └── com │ │ │ │ └── printproject │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── printproject │ │ │ └── com │ │ │ └── printproject │ │ │ └── ApplicationTest.java │ ├── proguard-rules.pro │ └── build.gradle ├── settings.gradle ├── .gitignore ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew └── README.md /PrintProject/.idea/.name: -------------------------------------------------------------------------------- 1 | PrintProject -------------------------------------------------------------------------------- /PrintProject/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PrintProject/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /PrintProject/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /PrintProject/app/libs/RTDriver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohrabuddin/PrintingInAndroid/HEAD/PrintProject/app/libs/RTDriver.jar -------------------------------------------------------------------------------- /PrintProject/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /PrintProject/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohrabuddin/PrintingInAndroid/HEAD/PrintProject/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/drawable/pos_printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohrabuddin/PrintingInAndroid/HEAD/PrintProject/app/src/main/res/drawable/pos_printer.png -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohrabuddin/PrintingInAndroid/HEAD/PrintProject/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohrabuddin/PrintingInAndroid/HEAD/PrintProject/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohrabuddin/PrintingInAndroid/HEAD/PrintProject/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohrabuddin/PrintingInAndroid/HEAD/PrintProject/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohrabuddin/PrintingInAndroid/HEAD/PrintProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/drawable/pos_printer_offliine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohrabuddin/PrintingInAndroid/HEAD/PrintProject/app/src/main/res/drawable/pos_printer_offliine.png -------------------------------------------------------------------------------- /PrintProject/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PrintProject/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /PrintProject/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Oct 21 11:34:03 PDT 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip 7 | -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/layout/list_layout_bluetooth_device.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PrintProject/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 180dp 6 | 16dp 7 | 16dp 8 | 9 | -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | > 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /PrintProject/app/src/test/java/printproject/com/printproject/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package printproject.com.printproject; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /PrintProject/app/src/androidTest/java/printproject/com/printproject/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package printproject.com.printproject; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/menu/menu_scrolling.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /PrintProject/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.5.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /PrintProject/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /PrintProject/app/src/main/java/printproject/com/utility/Utility.java: -------------------------------------------------------------------------------- 1 | package printproject.com.utility; 2 | 3 | import java.text.DecimalFormat; 4 | import java.text.NumberFormat; 5 | import java.util.Locale; 6 | 7 | /** 8 | * Created by shohrab.uddin on 29.12.2015. 9 | */ 10 | public class Utility { 11 | 12 | public static String doubleFormatter(double number){ 13 | Locale locale = new Locale("en"); 14 | Locale.setDefault(locale); 15 | 16 | NumberFormat formatter = new DecimalFormat("#0.00"); 17 | 18 | String formattedNumber=formatter.format(number); 19 | 20 | return formattedNumber; 21 | 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /PrintProject/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /PrintProject/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in D:\l\AndroidStudio\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /PrintProject/app/src/main/java/printproject/com/printproject/StaticValue.java: -------------------------------------------------------------------------------- 1 | package printproject.com.printproject; 2 | 3 | import android.app.Dialog; 4 | 5 | import java.util.ArrayList; 6 | 7 | import printproject.com.model.SalesModel; 8 | 9 | /** 10 | * Created by shohrab.uddin on 29.12.2015. 11 | */ 12 | public class StaticValue { 13 | public static boolean isPrinterConnected=false; 14 | public static ArrayList arrayListSalesModel = new ArrayList(); 15 | public static final String CURRENCY = "EUR"; 16 | public static final double VAT = 10.00; 17 | public static final String VAT_REGISTRATION_NUMBER ="8877BD9877"; 18 | public static final String BRANCH_ADDRESS ="70188, Stuttgart, Germany"; 19 | } 20 | -------------------------------------------------------------------------------- /PrintProject/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /PrintProject/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.2" 6 | 7 | defaultConfig { 8 | applicationId "printproject.com.printproject" 9 | minSdkVersion 16 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | testCompile 'junit:junit:4.12' 25 | compile 'com.android.support:appcompat-v7:23.1.1' 26 | compile 'com.android.support:design:23.1.1' 27 | } 28 | -------------------------------------------------------------------------------- /PrintProject/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |