你好,我必須通過藍牙打印機 打印我想讓它發送打印數據的POS(銷售點) 的應用程序,我發現這個解決方案 https://play.google.com/store/apps/details?id=com.fidelier.posprinterdriver 它的驅動程序我的打印機 他們說任何一個可以幫助我在此Android應用
+### Print from your Android App (interactive user action)
+
+Create your ESC data using the helpers Create an Android Intent using Add your ESC data as a 「Data」 extra Start the intent.
+You can be printing in minutes with just a couple lines of code. It's as simple as creating your intent, adding your ESC formatted string and start the (service) intent.
+
+Example:
+
+```java
+
+String dataToPrint="$big$This is a printer test$intro$posprinterdriver.com$intro$$intro$$cut$$intro$";
+
+Intent intentPrint = new Intent();
+
+intentPrint.setAction(Intent.ACTION_SEND);
+intentPrint.putExtra(Intent.EXTRA_TEXT, dataToPrint);
+intentPrint.setType("text/plain");
+
+this.startActivity(intentPrint);
+
+```
任何機構可以告訴我,我該怎麼辦在於: 我應該在哪裏放這些代碼? ?
你只需要發送這個明確的意圖與額外的文字...所以你插入這個代碼,你要開始打印... – AxelH