それを機能させる方法を理解するのに永遠にかかりました。始められるようにできる限りのことをします。私はAndroidにかなり慣れていないので、間違っていることを指摘してください。コンテンツを上に移動すると誤って印刷されることがあるため、上部が切り取られ、下部に多くのスペースが追加されます。誰かがそれを理解できるなら、私は大歓迎です。
どうぞ:
APK からこれらのファイルが必要です: とにかく私がそれらを変更したとは思わないでください: 1. RasterDocument.java 2. StarBitmap.java
主な印刷方法:
public static void PrintReceipt(Context context, RelativeLayout layout){
String portName = "tcp:10.1.250.20"; //ip address of your printer
String portSettings = "";
//have to measure the layout for it to print correctly, otherwise sizes are zero
layout.measure(View.MeasureSpec.makeMeasureSpec(layout.getLayoutParams().width, View.MeasureSpec.EXACTLY),
View.MeasureSpec.makeMeasureSpec(layout.getLayoutParams().height, View.MeasureSpec.EXACTLY));
layout.layout(0, 0, layout.getMeasuredWidth(), layout.getMeasuredHeight());
Bitmap bitmap = Bitmap.createBitmap(layout.getWidth(),layout.getHeight(), Bitmap.Config.RGB_565);
Canvas canvas = new Canvas(bitmap);
canvas.drawColor(Color.WHITE);
layout.draw(canvas);
int maxWidth = 576; //default width of tsp100 receipt
RasterDocument rasterDoc = new RasterDocument(RasterDocument.RasSpeed.Full, RasterDocument.RasPageEndMode.FeedAndFullCut, RasterDocument.RasPageEndMode.FeedAndFullCut, RasterDocument.RasTopMargin.Standard, 0, 0, 0);
StarBitmap starbitmap = new StarBitmap(bitmap, false, maxWidth);
StarIOPort port = null;
try
{
/*
using StarIOPort3.1.jar (support USB Port)
Android OS Version: upper 2.2
*/
port = StarIOPort.getPort(portName, portSettings, 10000, context);
/*
using StarIOPort.jar
Android OS Version: under 2.1
port = StarIOPort.getPort(portName, portSettings, 10000);
*/
try
{
Thread.sleep(500);
}
catch(InterruptedException e) {}
byte[] command = rasterDoc.BeginDocumentCommandData();
port.writePort(command, 0, command.length);
command = starbitmap.getImageRasterDataForPrinting();
port.writePort(command, 0, command.length);
command = rasterDoc.EndDocumentCommandData();
port.writePort(command, 0, command.length);
try
{
Thread.sleep(1000);
}
catch(InterruptedException e) {}
}
catch (StarIOPortException e)
{
ShowAlertMessage(context, "Failure", "Failed to connect to printer. " + e.getMessage());
}
finally
{
if(port != null)
{
try {
StarIOPort.releasePort(port);
} catch (StarIOPortException e) {}
}
}
}
private static void ShowAlertMessage(final Context context, final String alertTitle, final String message){
try {
((Activity)context).runOnUiThread(new Runnable() {
@Override
public void run() {
AlertDialog.Builder dialog = new AlertDialog.Builder(context);
dialog.setNegativeButton("Ok", null);
AlertDialog alert = dialog.create();
alert.setTitle(alertTitle);
alert.setMessage(message);
alert.show();
}});
} catch (final Exception e) {
Log.e(PrinterFunctions.class.getName(), e.getMessage());
}
}
THEN: 別の方法で、PrintReceipt に相対レイアウトを送信します。クラスのコンストラクターで現在のコンテキストを設定します。
Context currentContext;
RelativeLayout relativeLayout;
private final int receiptWidth = 576;
private Typeface typeFace = Typeface.DEFAULT;
private int normalFontSize = 23;
private int largeFontSize = 28;
public SetupReceiptClass(Context context){
currentContext = context;
}
public void SetupReceipt(String customerName){
//Create layout for receipt
relativeLayout = new RelativeLayout(currentContext);
RelativeLayout.LayoutParams params;
params = new RelativeLayout.LayoutParams(receiptWidth, ViewGroup.LayoutParams.MATCH_PARENT);
relativeLayout.setLayoutParams(params);
relativeLayout.setId(R.id.ReceiptLayout);
//Create whatever views you want here and add them to the RelativeLayout to make up your receipt
relativeLayout.addView(whateverViewsYouCreate);
//Finally, Print the receipt.
new Thread(new Runnable() {
@Override
public void run() {
PrintReceipt(currentContext, relativeLayout);
}
}).start();
}
繰り返しますが、私はアンドロイドのことは初めてです。これは最善の方法ではないかもしれませんが、印刷しています。あなたが見つけた素晴らしいものは何でも、私はそれらを聞きたいです.