BtPrint4
A Bluetooth Label printer demo
This is my first Android project and I had to learn how to get an Android activity working. I am a Windows Mobile C# developer and had to learn that you have to do many handwritten code in compare to what Visual Studio for SmartDevice development does automatically.
An Android activity consists of many, many files with references to each other. Fortunately an IDE helps you creating and finding all the files and references.
I started with Eclipse and ADT but went over to use Android Studio. Eclipse showed very strange behaving when designing the GUI of my activities.
functions
To print to a bluetooth printer we need several functions:
- A reference to the printer, the BT MAC address
- A socket to communicate with the printer
- A set of demo data
Make the activity more user friendly
- provide a list of Bluetooth devices nearby to be used as target
- move the communication part to a background thread
- a list with demo data
implementation
The UI has an EditText holding the BT MAC address and a TextView to hold the demo data reference. Buttons for BT discovery, Connect/Disconnect, Demo select and a Print button. There are two list activities (separate windows or forms): the BT device list and a demo data list. The BT MAC address is filled either manually or by selecting a BT device from the list.
I always try to keep code re-useable and so I implemented some helper classes.
demo data
As BtPrint4 should provide a flexible set of demo data, this data is hold in separate files. I can add new demo data files by simply putting them in the assets dir of the project. To show the user better details about a demo file, I use a xml file with the description of each file.
The supported label and receipt printers use different print languages to print: ESC/P, IPL (Intermec Printer Language), ZSIM (a Zebra Simulation), CSIM, FP (Intermec Fingerprint) and others.
Further the data send to the label/receipt printer should match the width of the print media. There are printers with 2, 3, 4 and 5 inch media.
To manage all these different supported print languages and media sizes the file names I use reflect the target printer/media. The xml file with the descriptions provides more details about the demo files for the user.
getting started
Fortunately I did not have to start everything from scratch and found the Andorid SDK sample project BluetoothChat. It already comes with a BT device list and a background thread handling the communication. So, many thanks to Google to provide this sample.
thread and GUI communication
The background thread has to communicate to the main activity to announce state changes. And I need a function to write the demo data to the Bluetooth socket inside the thread. This was already implemented in the BluetoothChat thread code.
Within Compact Framework I can have several threads and have different handlers (delegates and events) for each thread.
On Android you only have one BroadcastReceiver that will handle all communication with different threads. Similar to WndProc (the main window message handler) on a windows system. AFAIK on Android you can also use Callbacks, but this will couple your thread code with the GUI. But message handling is asynchronous and so de-coupled. It may be a challenge to handle many different background threads within only one message handler. You have to provide identifiers for all possible sources of messages from background threads and the handler function in your main activity gets longer and longer. Not that nice.
states
The background thread sends its state to the main activity. So we know if has a connection to the BT device (printer). The thread will also send received data to the activity. To provide the received data a so called bundle is used. The states are using a bundle (al list of keys and values) and a simple arg of the message to provide state changes to the main code.
The main activity message handler:
...
private final Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
switch (msg.what) {
case msgTypes.MESSAGE_STATE_CHANGE:
Bundle bundle = msg.getData();
int status = bundle.getInt("state");
if (D)
Log.i(TAG, "handleMessage: MESSAGE_STATE_CHANGE: " + msg.arg1);
setConnectState(msg.arg1);
switch (msg.arg1) {
case btPrintFile.STATE_CONNECTED:
addLog("connected to: " + mConnectedDeviceName);
mConversationArrayAdapter.clear();
Log.i(TAG, "handleMessage: STATE_CONNECTED: " + mConnectedDeviceName);
break;
...
The thread sending state changes in a message:
...
void addText(String msgType, int state){
msgTypes type;
Message msg;
Bundle bundle = new Bundle();
if(msgType.equals(msgTypes.STATE)){
msg = mHandler.obtainMessage(msgTypes.MESSAGE_STATE_CHANGE);
}
else if(msgType.equals(msgTypes.DEVICE_NAME)){
msg = mHandler.obtainMessage(msgTypes.MESSAGE_DEVICE_NAME);
}
...
bundle.putInt(msgType, state);
msg.setData(bundle);
msg.arg1=state;
mHandler.sendMessage(msg);
Log.i(TAG, "addText: "+msgType+", state="+state);
}
...
And the thread sending received data as a message:
while (true) {
try {
bytes = mmInStream.read(buffer);
mHandler.obtainMessage(msgTypes.MESSAGE_READ, bytes, -1, buffer).sendToTarget();
} catch (IOException e) {
Log.e(TAG, "disconnected", e);
connectionLost();
break;
}
}
select a Bluetooth device
You can enter a known BT MAC address directly of let the device show y ou a list of paired devices and scan for new devices. The BT device list activity is a separate activity and has to be added to the app Manifest. Such child activities communicate the selection back to the main activity using an onActivityResult handler funcion. Again, all child activities use the same handler function callback and so your list of switch/case codes increases. On windows (C#, .NET) you have one handler for one form or dialog.
In the original BluetoothChat code the Scan button was only visible on startup of the list activity and was hidden after a first press. I extended this to show the scan button all the time, so you can initiate another scan for devices without closing and opening the list again. During the scan (discovery) the button is changed to a cancel button which then stops the actula discovery.
connect to device
The connection is done async in a separate thread. We need a socket Bluetooth SPP connection:
public ConnectThread(BluetoothDevice device) {
mmDevice = device;
BluetoothSocket tmp = null;
try {
addText("createInsecureRfcommSocketToServiceRecord");
tmp = device.createInsecureRfcommSocketToServiceRecord(UUID_SPP);
} catch (IOException e) {
Log.e(TAG, "create() failed", e);
}
mmSocket = tmp;
}
To identity a Bluetooth device we use the BT MAC address only.
select a demo file
The demo files are presented by another child activity. It lists the files ending in ‘.prn’ of the assets dir. When you select a file, the content of the printdemo files xml is shown. This xml is read and fills creates a set of classes with the data of the xml for each demo file. The parsing and demo file classes are spread over three class files:
- PrintFileDetails.java
- PrintFileXML.java
- PrintLanguage.java
The details are the printer language, the media width, a short and a long description and the file name:
public String shortname;
public String description;
public String help;
public String filename;
public PrintLanguage.ePrintLanguages printLanguage;
public Integer printerWidth=2;
The demo files have speaking names but these give not all details and so the xml is used to describe the files further. Example file name: escp4prodlist.prn (print language=ESP/P, media width=4 inch, prints a product list?) and the xml for that file is:
<fileentry>
<shortname>PrintESCP4plistBT</shortname>
<description>Intermec (BT,ESCP,4inch) Product List Print</description>
<help>Print 4inch product list to an Intermec printer in ESCP</help>
<filename>escp4prodlist.prn</filename>
</fileentry>
printing is sending binary data
The demo data is within asset files. To write it to the printer (a Bluetooth socket) we need to obtain the bytes fo the file. We need to ensure the data is not changed and the data is send as is.
void printFile() {
String fileName = mTxtFilename.getText().toString();
if (!fileName.endsWith("prn")) {
myToast("Not a prn file!", "Error");
return;
}
if (btPrintService.getState() != btPrintFile.STATE_CONNECTED) {
myToast("Please connect first!", "Error");
return;
}
if (fileName.startsWith("escp")) {
byte[] bufQuery = escpQuery();
btPrintService.write(bufQuery);
}
if (mTxtFilename.length() > 0) {
InputStream inputStream = null;
ByteArrayInputStream byteArrayInputStream;
Integer totalWrite = 0;
StringBuffer sb = new StringBuffer();
try {
inputStream = this.getAssets().open(fileName);
byte[] buf = new byte[2048];
int readCount = 0;
do {
readCount = inputStream.read(buf);
if (readCount > 0) {
totalWrite += readCount;
byte[] bufOut = new byte[readCount];
System.arraycopy(buf, 0, bufOut, 0, readCount);
btPrintService.write(bufOut);
}
} while (readCount > 0);
inputStream.close();
addLog(String.format("printed " + totalWrite.toString() + " bytes"));
} catch (IOException e) {
Log.e(TAG, "Exception in printFile: " + e.getMessage());
addLog("printing failed!");
myToast("Printing failed","Error");
}
} else {
addLog("no demo file");
myToast("No demo file selected!","Error");
}
}
Notes for the above code:
[1] mTxtFilename holds the name of the file the user has selected
[2] ensure we are connected
[3] we can also query the printer status asyncronously
[4] read the data as is means read it as ByteArrayInputStream
If the binary data is read as InputStream it is converted to unicode. But it has to remain as is and found I had to read it as ByteArrayInputStream to get unconverted data.
[5] open the stream using an asset file
[6] read and write the data in chunks
annoyances
Here is a short list of what drived me crazy and took a long trial and error phase.
- EditText covered by soft keyboard if main layout is not a SrollView
- TextView not directly updated from inside message handler
- TextView not scrolling if inside XYZ layout
- updating GUI from message handler works for some code and for other not
If you need an EditText to move automatically into view when the soft keyboard comes up, you need to wrap all your layout info a ScrollView.
First I did updates to the log TextView by TextView.append() inside the message handler. But the text was not updated all the time. May be if before or after a Toast, but I changed the code to call a function to update the log TextView.
Although a TextView shows scroll bars automatically, if in the right order of the layout and having a fixed height, scrolling stops working in some combinations and I finally added some hard code scrolling.
resume
Although Android offers a great programming environment, some behaviour is strange and does not behave like documented. Solving these problems took me 70% of the coding. There was a lot of try-and-check before BtPrint4 behaved like desired. For example TextView scrolling, automatically and manually is a place of problems and trial and error, just search the internet about this and you will find many different ‘solutions’ that may work for you or not. It totally depends on your layout and the order of containers and which attributes they have.
Forgive my coding style I am not a Java specialist.
Full code at github
<!-- Social Bookmarks BEGIN -->
<!-- Social Bookmarks END -->