মাল্টলাইন পাঠ্য আঁকার পাশাপাশি, একাধিক লাইন পাঠ্য সীমানা অর্জনের সাথে লড়াই করতে পারে (উদাহরণস্বরূপ এটি ক্যানভাসে সারিবদ্ধ করার জন্য)। এই ক্ষেত্রে
ডিফল্ট paint.getTextBounds()
কাজ করবে না কারণ এটি একমাত্র লাইন পরিমাপ করবে।
সুবিধার জন্য, আমি এই 2 টি এক্সটেনশন ফাংশন তৈরি করেছি: একটি মাল্টলাইন পাঠ্য আঁকার জন্য এবং অন্যটি পাঠ্যের সীমা পাওয়ার জন্য।
private val textBoundsRect = Rect()
/**
* Draws multi-line text on the Canvas with the origin at (x,y), using the specified paint. The origin is interpreted
* based on the Align setting in the paint.
*
* @param text The text to be drawn
* @param x The x-coordinate of the origin of the text being drawn
* @param y The y-coordinate of the baseline of the text being drawn
* @param paint The paint used for the text (e.g. color, size, style)
*/
fun Canvas.drawTextMultiLine(text: String, x: Float, y: Float, paint: Paint) {
var lineY = y
for (line in text.split("\n")) {
lineY += paint.descent().toInt() - paint.ascent().toInt()
drawText(line, x, lineY, paint)
}
}
/**
* Retrieve the text boundary box, taking into account line breaks [\n] and store to [boundsRect].
*
* Return in bounds (allocated by the caller [boundsRect] or default mutable [textBoundsRect]) the smallest rectangle that
* encloses all of the characters, with an implied origin at (0,0).
*
* @param text string to measure and return its bounds
* @param start index of the first char in the string to measure. By default is 0.
* @param end 1 past the last char in the string to measure. By default is test length.
* @param boundsRect rect to save bounds. Note, you may not supply it. By default, it will apply values to the mutable [textBoundsRect] and return it.
* In this case it will be changed by each new this function call.
*/
fun Paint.getTextBoundsMultiLine(
text: String,
start: Int = 0,
end: Int = text.length,
boundsRect: Rect = textBoundsRect
): Rect {
getTextBounds(text, start, end, boundsRect)
val linesCount = text.split("\n").size
val allLinesHeight = (descent().toInt() - ascent().toInt()) * linesCount
boundsRect.bottom = boundsRect.top + allLinesHeight
return boundsRect
}
এখন এটি ব্যবহার করা যেমন সহজ: মাল্টলাইন পাঠ্য আঁকার জন্য:
canvas.drawTextMultiLine(text, x, y, yourPaint)
পাঠ্য মাপার জন্য:
ভাল বাউন্ডস = আপনারপেইন্ট.গেটটেক্সটবাউন্ডস মাল্টলাইন (পাঠ্য)
এই ক্ষেত্রে এটি শুরু থেকে শেষ অবধি এবং একবার বরাদ্দকৃত (পরিবর্তনযোগ্য) রেক্টের ডিফল্ট ব্যবহার করে সমস্ত পাঠ্য মাপবে।
অতিরিক্ত নমনীয়তার জন্য আপনি অতিরিক্ত পরামিতিগুলি পেরিয়ে চারপাশে খেলতে পারেন।
Layout
কল করার পরিবর্তে একটি ব্যবহার করার পরামর্শ দেয়Canvas.drawText
। এই প্রশ্নোত্তর দেখায় যেStaticLayout
মাল্টলাইন পাঠ্য আঁকার জন্য কীভাবে ব্যবহার করতে হয়