13

テキストを中央の長方形に(水平方向と垂直方向に)描画したい。切り抜くテキストが多すぎる場合は、rectに収まりません。

私はこの例が示すようにそれをやろうとしましたが、運がありません。

何か案は?

4

2 に答える 2

12

これを試して

private void drawRectText(String text, Canvas canvas, Rect r) {

    textPaint.setTextSize(20);
    textPaint.setTextAlign(Align.CENTER);
    int width = r.width();

    int numOfChars = textPaint.breakText(text,true,width,null);
    int start = (text.length()-numOfChars)/2;
    canvas.drawText(text,start,start+numOfChars,r.exactCenterX(),r.exactCenterY(),textPaint);
}
于 2013-03-18T13:52:07.273 に答える
5

この機能は私にとってはうまくいきました。

private void drawDigit(Canvas canvas, int textSize,  float cX, float cY, int color, String text) {
        Paint tempTextPaint = new Paint();
        tempTextPaint.setAntiAlias(true);
        tempTextPaint.setStyle(Paint.Style.FILL);

        tempTextPaint.setColor(color); 
        tempTextPaint.setTextSize(textSize); 

        float textWidth = tempTextPaint.measureText(text);
        //if cX and cY are the origin coordinates of the your rectangle 
        //cX-(textWidth/2) = The x-coordinate of the origin of the text being drawn 
        //cY+(textSize/2) =  The y-coordinate of the origin of the text being drawn 

        canvas.drawText(text, cX-(textWidth/2), cY+(textSize/2), tempTextPaint);
    }
于 2013-03-17T23:40:15.793 に答える