1

これを探しました。しかし、私は何も役に立ちませんでした。LineAndPointFormatter クラスのドキュメントには、厚さについては何も言及されていません..この問題を解決するのを手伝ってください。

4

2 に答える 2

3

これはあなたを助けるかもしれません:

    LineAndPointFormatter lineAndPointFormatter = new LineAndPointFormatter(Color.rgb(0, 0, 0), null, null);

    //change the line width
    Paint paint = lineAndPointFormatter.getLinePaint();
    paint.setStrokeWidth(3);
    lineAndPointFormatter.setLinePaint(paint);
于 2013-11-27T04:31:52.007 に答える
2

ペイント オブジェクトは可変であるため、設定するためにコピーを作成する必要はありません。

LineAndPointFormatter lineAndPointFormatter = new LineAndPointFormatter(Color.rgb(0, 0, 0), null, null);

// Set the line (stroke) width.
lineAndPointFormatter.getLinePaint().setStrokeWidth(3);
于 2015-02-09T00:58:41.440 に答える