Searched refs:debugTextPaint (Results 1 – 1 of 1) sorted by relevance
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/ |
D | SubsamplingScaleImageView.java | 268 private Paint debugTextPaint; field in SubsamplingScaleImageView 1072 … canvas.drawText("LOADING", tile.vRect.left + px(5), tile.vRect.top + px(35), debugTextPaint); in onDraw() 1075 …bottom + "," + tile.sRect.right, tile.vRect.left + px(5), tile.vRect.top + px(15), debugTextPaint); in onDraw() 1114 …)) + " - " + String.format(Locale.ENGLISH, "%.2f", maxScale) + ")", px(5), px(15), debugTextPaint); in onDraw() 1115 …ate.x) + ":" + String.format(Locale.ENGLISH, "%.2f", vTranslate.y), px(5), px(30), debugTextPaint); in onDraw() 1117 … center.x) + ":" + String.format(Locale.ENGLISH, "%.2f", center.y), px(5), px(45), debugTextPaint); in onDraw() 1227 if ((debugTextPaint == null || debugLinePaint == null) && debug) { in createPaints() 1228 debugTextPaint = new Paint(); in createPaints() 1229 debugTextPaint.setTextSize(px(12)); in createPaints() 1230 debugTextPaint.setColor(Color.MAGENTA); in createPaints() [all …]
|