1

私はアンドロイドを使って簡単な宅配便システムをやっています。配送プロセスの最後に、クライアントが宅配便を受け取ったことの確認として電話で署名する必要がある場合はどうすればよいですか. Androidを使用してこれを行うにはどうすればよいですか。アドバイス、提案は大歓迎です。

4

1 に答える 1

1

署名を実行すると多くのスペースが消費され、電話デバイスの小さな領域では、配信プロセスの最後にクライアントから署名を取得するには不十分です。これが私の考えです。

配達の詳細を含むリストを生成します。

--> 配達時に、配達されたアイテムをクリックすると、ビューが開きました。

--> そのビューで、クライアントは署名を実行できます。

--> その署名を配送の詳細とともに DB に保存できます

--> 配信リストから配信済みアイテムへのアイテムの削除または転送 (これは別のビュー アプローチである必要があります)

これは実行する私のアイデアです

m そのタスク。署名を取得するには、ペイント メソッドと署名メソッドを適用できます。それについても助けが必要かどうか尋ねてください。ありがとう

package com.paintexample;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.RectF;
import android.view.MotionEvent;
import android.view.View;

public class DrawView extends View {

    private static final float STROKE_WIDTH = 5f;

    /** Need to track this so the dirty region can accommodate the stroke. **/
    private static final float HALF_STROKE_WIDTH = STROKE_WIDTH / 2;

    private Paint paint = new Paint();
    private Path path = new Path();

    /** Optimizes painting by invalidating the smallest possible area. */
    private float lastTouchX;
    private float lastTouchY;
    private final RectF dirtyRect = new RectF();

    public DrawView(Context context) {
        super(context);

        paint.setAntiAlias(true);
        paint.setColor(Color.BLACK);
        paint.setStyle(Paint.Style.STROKE);
        paint.setStrokeJoin(Paint.Join.ROUND);
        paint.setStrokeWidth(STROKE_WIDTH);
    }

    /** Erases the signature. */
    public void clear() {
        path.reset();

        // Repaints the entire view.
        invalidate();
    }

    @Override
    protected void onDraw(Canvas canvas) {
        canvas.drawPath(path, paint);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        float eventX = event.getX();
        float eventY = event.getY();

        switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN:
            path.moveTo(eventX, eventY);
            lastTouchX = eventX;
            lastTouchY = eventY;
            // There is no end point yet, so don't waste cycles invalidating.
            return true;

        case MotionEvent.ACTION_MOVE:
        case MotionEvent.ACTION_UP:
            // Start tracking the dirty region.
            resetDirtyRect(eventX, eventY);

            // When the hardware tracks events faster than they are delivered,
            // the
            // event will contain a history of those skipped points.
            int historySize = event.getHistorySize();
            Logger.debug("historySize : " + historySize);
            for (int i = 0; i < historySize; i++) {
                float historicalX = event.getHistoricalX(i);
                float historicalY = event.getHistoricalY(i);
                expandDirtyRect(historicalX, historicalY);
                path.lineTo(historicalX, historicalY);
            }

            // After replaying history, connect the line to the touch point.
            // Logger.debug("eventX " + eventX);
            // Logger.debug("eventY " + eventX);
            //
            // Logger.debug("lastTouchX " + lastTouchX);
            // Logger.debug("lastTouchY " + lastTouchY);
            //
            // if (eventX == lastTouchX && eventY == lastTouchY) {
            //
            // path.addCircle(eventX, eventY, 20, Path.Direction.CW);
            //
            // }

            path.lineTo(eventX, eventY);

            break;

        default:
            Logger.debug("Ignored touch event: " + event.toString());
            return false;
        }

        // Include half the stroke width to avoid clipping.
        invalidate((int) (dirtyRect.left - HALF_STROKE_WIDTH), (int) (dirtyRect.top - HALF_STROKE_WIDTH), (int) (dirtyRect.right + HALF_STROKE_WIDTH), (int) (dirtyRect.bottom + HALF_STROKE_WIDTH));

        lastTouchX = eventX;
        lastTouchY = eventY;

        return true;
    }

    /** Called when replaying history to ensure the dirty region includes all
     * points. */
    private void expandDirtyRect(float historicalX, float historicalY) {
        if (historicalX < dirtyRect.left) {
            dirtyRect.left = historicalX;
        } else if (historicalX > dirtyRect.right) {
            dirtyRect.right = historicalX;
        }
        if (historicalY < dirtyRect.top) {
            dirtyRect.top = historicalY;
        } else if (historicalY > dirtyRect.bottom) {
            dirtyRect.bottom = historicalY;
        }
    }

    /** Resets the dirty region when the motion event occurs. */
    private void resetDirtyRect(float eventX, float eventY) {

        // The lastTouchX and lastTouchY were set when the ACTION_DOWN
        // motion event occurred.
        dirtyRect.left = Math.min(lastTouchX, eventX);
        dirtyRect.right = Math.max(lastTouchX, eventX);
        dirtyRect.top = Math.min(lastTouchY, eventY);
        dirtyRect.bottom = Math.max(lastTouchY, eventY);
    }
}

上記は描画クラスです

このようにアクティビティに描画ビューを追加します。

//Assigning Drawing Board
        drawView = new DrawView(this);
        setContentView(view);
        drawView.requestFocus();
        linearLayout.addView(drawView);

DrawViewクラスのさまざまなメソッドを使用して、クリア/ペイントなどを楽しむことができます

于 2012-11-20T07:27:46.287 に答える