blob: b56fd6fafb6cc450be0f4bbda41a2f33b8bed775 [file] [log] [blame]
Gilles Debunne60e3b3f2012-03-13 11:26:05 -07001/*
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.text;
18
Raph Levien39b4db72015-03-25 13:18:20 -070019import android.annotation.IntDef;
Siyamed Sinir0fa89d62017-07-24 20:46:41 -070020import android.annotation.IntRange;
Mathew Inwoodefeab842018-08-14 15:21:30 +010021import android.annotation.UnsupportedAppUsage;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.graphics.Canvas;
23import android.graphics.Paint;
Doug Felt9f7a4442010-03-01 12:45:56 -080024import android.graphics.Path;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.graphics.Rect;
Seigo Nonaka70200b02018-10-01 16:04:11 -070026import android.graphics.text.LineBreaker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.text.method.TextKeyListener;
Doug Felt9f7a4442010-03-01 12:45:56 -080028import android.text.style.AlignmentSpan;
29import android.text.style.LeadingMarginSpan;
Gilles Debunne162bf0f2010-11-16 16:23:53 -080030import android.text.style.LeadingMarginSpan.LeadingMarginSpan2;
Doug Felt9f7a4442010-03-01 12:45:56 -080031import android.text.style.LineBackgroundSpan;
32import android.text.style.ParagraphStyle;
33import android.text.style.ReplacementSpan;
34import android.text.style.TabStopSpan;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
Siyamed Sinired09ae12016-02-16 14:36:26 -080036import com.android.internal.annotations.VisibleForTesting;
Doug Feltcb3791202011-07-07 11:57:48 -070037import com.android.internal.util.ArrayUtils;
Adam Lesinski776abc22014-03-07 11:30:59 -050038import com.android.internal.util.GrowingArrayUtils;
Doug Feltcb3791202011-07-07 11:57:48 -070039
Raph Levien39b4db72015-03-25 13:18:20 -070040import java.lang.annotation.Retention;
41import java.lang.annotation.RetentionPolicy;
Doug Feltc982f602010-05-25 11:51:40 -070042import java.util.Arrays;
Doug Felt9f7a4442010-03-01 12:45:56 -080043
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044/**
Doug Felt9f7a4442010-03-01 12:45:56 -080045 * A base class that manages text layout in visual elements on
46 * the screen.
47 * <p>For text that will be edited, use a {@link DynamicLayout},
48 * which will be updated as the text changes.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049 * For text that will not change, use a {@link StaticLayout}.
50 */
51public abstract class Layout {
Raph Levien39b4db72015-03-25 13:18:20 -070052 /** @hide */
Jeff Sharkeyce8db992017-12-13 20:05:05 -070053 @IntDef(prefix = { "BREAK_STRATEGY_" }, value = {
Seigo Nonaka70200b02018-10-01 16:04:11 -070054 LineBreaker.BREAK_STRATEGY_SIMPLE,
55 LineBreaker.BREAK_STRATEGY_HIGH_QUALITY,
56 LineBreaker.BREAK_STRATEGY_BALANCED
Jeff Sharkeyce8db992017-12-13 20:05:05 -070057 })
Raph Levien39b4db72015-03-25 13:18:20 -070058 @Retention(RetentionPolicy.SOURCE)
59 public @interface BreakStrategy {}
60
61 /**
62 * Value for break strategy indicating simple line breaking. Automatic hyphens are not added
63 * (though soft hyphens are respected), and modifying text generally doesn't affect the layout
64 * before it (which yields a more consistent user experience when editing), but layout may not
65 * be the highest quality.
66 */
Seigo Nonaka70200b02018-10-01 16:04:11 -070067 public static final int BREAK_STRATEGY_SIMPLE = LineBreaker.BREAK_STRATEGY_SIMPLE;
Raph Levien39b4db72015-03-25 13:18:20 -070068
69 /**
70 * Value for break strategy indicating high quality line breaking, including automatic
71 * hyphenation and doing whole-paragraph optimization of line breaks.
72 */
Seigo Nonaka70200b02018-10-01 16:04:11 -070073 public static final int BREAK_STRATEGY_HIGH_QUALITY = LineBreaker.BREAK_STRATEGY_HIGH_QUALITY;
Raph Levien39b4db72015-03-25 13:18:20 -070074
75 /**
76 * Value for break strategy indicating balanced line breaking. The breaks are chosen to
77 * make all lines as close to the same length as possible, including automatic hyphenation.
78 */
Seigo Nonaka70200b02018-10-01 16:04:11 -070079 public static final int BREAK_STRATEGY_BALANCED = LineBreaker.BREAK_STRATEGY_BALANCED;
Raph Levien39b4db72015-03-25 13:18:20 -070080
Roozbeh Pournader95c7a132015-05-12 12:01:06 -070081 /** @hide */
Jeff Sharkeyce8db992017-12-13 20:05:05 -070082 @IntDef(prefix = { "HYPHENATION_FREQUENCY_" }, value = {
83 HYPHENATION_FREQUENCY_NORMAL,
84 HYPHENATION_FREQUENCY_FULL,
85 HYPHENATION_FREQUENCY_NONE
86 })
Roozbeh Pournader95c7a132015-05-12 12:01:06 -070087 @Retention(RetentionPolicy.SOURCE)
88 public @interface HyphenationFrequency {}
89
90 /**
91 * Value for hyphenation frequency indicating no automatic hyphenation. Useful
92 * for backward compatibility, and for cases where the automatic hyphenation algorithm results
93 * in incorrect hyphenation. Mid-word breaks may still happen when a word is wider than the
94 * layout and there is otherwise no valid break. Soft hyphens are ignored and will not be used
95 * as suggestions for potential line breaks.
96 */
Seigo Nonaka70200b02018-10-01 16:04:11 -070097 public static final int HYPHENATION_FREQUENCY_NONE = LineBreaker.HYPHENATION_FREQUENCY_NONE;
Roozbeh Pournader95c7a132015-05-12 12:01:06 -070098
99 /**
100 * Value for hyphenation frequency indicating a light amount of automatic hyphenation, which
101 * is a conservative default. Useful for informal cases, such as short sentences or chat
102 * messages.
103 */
Seigo Nonaka70200b02018-10-01 16:04:11 -0700104 public static final int HYPHENATION_FREQUENCY_NORMAL = LineBreaker.HYPHENATION_FREQUENCY_NORMAL;
Roozbeh Pournader95c7a132015-05-12 12:01:06 -0700105
106 /**
107 * Value for hyphenation frequency indicating the full amount of automatic hyphenation, typical
108 * in typography. Useful for running text and where it's important to put the maximum amount of
109 * text in a screen with limited space.
110 */
Seigo Nonaka70200b02018-10-01 16:04:11 -0700111 public static final int HYPHENATION_FREQUENCY_FULL = LineBreaker.HYPHENATION_FREQUENCY_FULL;
Roozbeh Pournader95c7a132015-05-12 12:01:06 -0700112
Doug Felt71b8dd72010-02-16 17:27:09 -0800113 private static final ParagraphStyle[] NO_PARA_SPANS =
114 ArrayUtils.emptyArray(ParagraphStyle.class);
Dave Bort76c02262009-04-13 17:17:21 -0700115
Seigo Nonaka4b4730d2017-03-31 09:42:16 -0700116 /** @hide */
Jeff Sharkeyce8db992017-12-13 20:05:05 -0700117 @IntDef(prefix = { "JUSTIFICATION_MODE_" }, value = {
Seigo Nonaka70200b02018-10-01 16:04:11 -0700118 LineBreaker.JUSTIFICATION_MODE_NONE,
119 LineBreaker.JUSTIFICATION_MODE_INTER_WORD
Jeff Sharkeyce8db992017-12-13 20:05:05 -0700120 })
Seigo Nonaka4b4730d2017-03-31 09:42:16 -0700121 @Retention(RetentionPolicy.SOURCE)
122 public @interface JustificationMode {}
123
124 /**
125 * Value for justification mode indicating no justification.
126 */
Seigo Nonaka70200b02018-10-01 16:04:11 -0700127 public static final int JUSTIFICATION_MODE_NONE = LineBreaker.JUSTIFICATION_MODE_NONE;
Seigo Nonaka4b4730d2017-03-31 09:42:16 -0700128
129 /**
130 * Value for justification mode indicating the text is justified by stretching word spacing.
131 */
Seigo Nonaka41bb4fa2018-08-07 15:15:42 -0700132 public static final int JUSTIFICATION_MODE_INTER_WORD =
Seigo Nonaka70200b02018-10-01 16:04:11 -0700133 LineBreaker.JUSTIFICATION_MODE_INTER_WORD;
Seigo Nonaka4b4730d2017-03-31 09:42:16 -0700134
Roozbeh Pournader22a167c2017-08-21 12:53:44 -0700135 /*
136 * Line spacing multiplier for default line spacing.
137 */
138 public static final float DEFAULT_LINESPACING_MULTIPLIER = 1.0f;
139
140 /*
141 * Line spacing addition for default line spacing.
142 */
143 public static final float DEFAULT_LINESPACING_ADDITION = 0.0f;
144
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 /**
Siyamed Sinir79bf9d12016-05-18 19:57:52 -0700146 * Return how wide a layout must be in order to display the specified text with one line per
147 * paragraph.
148 *
149 * <p>As of O, Uses
150 * {@link TextDirectionHeuristics#FIRSTSTRONG_LTR} as the default text direction heuristics. In
151 * the earlier versions uses {@link TextDirectionHeuristics#LTR} as the default.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 */
153 public static float getDesiredWidth(CharSequence source,
154 TextPaint paint) {
155 return getDesiredWidth(source, 0, source.length(), paint);
156 }
Doug Felt9f7a4442010-03-01 12:45:56 -0800157
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 /**
Siyamed Sinir79bf9d12016-05-18 19:57:52 -0700159 * Return how wide a layout must be in order to display the specified text slice with one
160 * line per paragraph.
161 *
162 * <p>As of O, Uses
163 * {@link TextDirectionHeuristics#FIRSTSTRONG_LTR} as the default text direction heuristics. In
164 * the earlier versions uses {@link TextDirectionHeuristics#LTR} as the default.</p>
165 */
166 public static float getDesiredWidth(CharSequence source, int start, int end, TextPaint paint) {
167 return getDesiredWidth(source, start, end, paint, TextDirectionHeuristics.FIRSTSTRONG_LTR);
168 }
169
170 /**
Doug Felt71b8dd72010-02-16 17:27:09 -0800171 * Return how wide a layout must be in order to display the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 * specified text slice with one line per paragraph.
Siyamed Sinir79bf9d12016-05-18 19:57:52 -0700173 *
174 * @hide
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 */
Siyamed Sinir79bf9d12016-05-18 19:57:52 -0700176 public static float getDesiredWidth(CharSequence source, int start, int end, TextPaint paint,
177 TextDirectionHeuristic textDir) {
Seigo Nonaka917748e2017-08-03 17:42:28 -0700178 return getDesiredWidthWithLimit(source, start, end, paint, textDir, Float.MAX_VALUE);
179 }
180 /**
181 * Return how wide a layout must be in order to display the
182 * specified text slice with one line per paragraph.
183 *
184 * If the measured width exceeds given limit, returns limit value instead.
185 * @hide
186 */
187 public static float getDesiredWidthWithLimit(CharSequence source, int start, int end,
188 TextPaint paint, TextDirectionHeuristic textDir, float upperLimit) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189 float need = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190
191 int next;
192 for (int i = start; i <= end; i = next) {
193 next = TextUtils.indexOf(source, '\n', i, end);
194
195 if (next < 0)
196 next = end;
197
Doug Felt71b8dd72010-02-16 17:27:09 -0800198 // note, omits trailing paragraph char
Siyamed Sinir79bf9d12016-05-18 19:57:52 -0700199 float w = measurePara(paint, source, i, next, textDir);
Seigo Nonaka917748e2017-08-03 17:42:28 -0700200 if (w > upperLimit) {
201 return upperLimit;
202 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203
204 if (w > need)
205 need = w;
206
207 next++;
208 }
209
210 return need;
211 }
212
213 /**
214 * Subclasses of Layout use this constructor to set the display text,
215 * width, and other standard properties.
Doug Felt71b8dd72010-02-16 17:27:09 -0800216 * @param text the text to render
217 * @param paint the default paint for the layout. Styles can override
218 * various attributes of the paint.
219 * @param width the wrapping width for the text.
220 * @param align whether to left, right, or center the text. Styles can
221 * override the alignment.
222 * @param spacingMult factor by which to scale the font size to get the
223 * default line spacing
224 * @param spacingAdd amount to add to the default line spacing
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 */
226 protected Layout(CharSequence text, TextPaint paint,
227 int width, Alignment align,
Doug Felt71b8dd72010-02-16 17:27:09 -0800228 float spacingMult, float spacingAdd) {
Doug Feltcb3791202011-07-07 11:57:48 -0700229 this(text, paint, width, align, TextDirectionHeuristics.FIRSTSTRONG_LTR,
230 spacingMult, spacingAdd);
231 }
232
233 /**
234 * Subclasses of Layout use this constructor to set the display text,
235 * width, and other standard properties.
236 * @param text the text to render
237 * @param paint the default paint for the layout. Styles can override
238 * various attributes of the paint.
239 * @param width the wrapping width for the text.
240 * @param align whether to left, right, or center the text. Styles can
241 * override the alignment.
242 * @param spacingMult factor by which to scale the font size to get the
243 * default line spacing
244 * @param spacingAdd amount to add to the default line spacing
245 *
246 * @hide
247 */
248 protected Layout(CharSequence text, TextPaint paint,
249 int width, Alignment align, TextDirectionHeuristic textDir,
250 float spacingMult, float spacingAdd) {
251
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 if (width < 0)
253 throw new IllegalArgumentException("Layout: " + width + " < 0");
254
Doug Felte8e45f22010-03-29 14:58:40 -0700255 // Ensure paint doesn't have baselineShift set.
256 // While normally we don't modify the paint the user passed in,
257 // we were already doing this in Styled.drawUniformRun with both
258 // baselineShift and bgColor. We probably should reevaluate bgColor.
259 if (paint != null) {
260 paint.bgColor = 0;
261 paint.baselineShift = 0;
262 }
263
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 mText = text;
265 mPaint = paint;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266 mWidth = width;
267 mAlignment = align;
Doug Felt71b8dd72010-02-16 17:27:09 -0800268 mSpacingMult = spacingMult;
269 mSpacingAdd = spacingAdd;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800270 mSpannedText = text instanceof Spanned;
Doug Feltcb3791202011-07-07 11:57:48 -0700271 mTextDir = textDir;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 }
273
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900274 /** @hide */
Seigo Nonaka4b4730d2017-03-31 09:42:16 -0700275 protected void setJustificationMode(@JustificationMode int justificationMode) {
276 mJustificationMode = justificationMode;
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900277 }
278
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800279 /**
280 * Replace constructor properties of this Layout with new ones. Be careful.
281 */
282 /* package */ void replaceWith(CharSequence text, TextPaint paint,
283 int width, Alignment align,
284 float spacingmult, float spacingadd) {
285 if (width < 0) {
286 throw new IllegalArgumentException("Layout: " + width + " < 0");
287 }
288
289 mText = text;
290 mPaint = paint;
291 mWidth = width;
292 mAlignment = align;
293 mSpacingMult = spacingmult;
294 mSpacingAdd = spacingadd;
295 mSpannedText = text instanceof Spanned;
296 }
297
298 /**
299 * Draw this Layout on the specified Canvas.
300 */
301 public void draw(Canvas c) {
302 draw(c, null, null, 0);
303 }
304
305 /**
Doug Felt71b8dd72010-02-16 17:27:09 -0800306 * Draw this Layout on the specified canvas, with the highlight path drawn
307 * between the background and the text.
308 *
Gilles Debunne6c488de2012-03-01 16:20:35 -0800309 * @param canvas the canvas
Doug Felt71b8dd72010-02-16 17:27:09 -0800310 * @param highlight the path of the highlight or cursor; can be null
311 * @param highlightPaint the paint for the highlight
312 * @param cursorOffsetVertical the amount to temporarily translate the
313 * canvas while rendering the highlight
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 */
Gilles Debunne6c488de2012-03-01 16:20:35 -0800315 public void draw(Canvas canvas, Path highlight, Paint highlightPaint,
316 int cursorOffsetVertical) {
317 final long lineRange = getLineRangeForDraw(canvas);
318 int firstLine = TextUtils.unpackRangeStartFromLong(lineRange);
319 int lastLine = TextUtils.unpackRangeEndFromLong(lineRange);
320 if (lastLine < 0) return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321
Gilles Debunne6c488de2012-03-01 16:20:35 -0800322 drawBackground(canvas, highlight, highlightPaint, cursorOffsetVertical,
323 firstLine, lastLine);
324 drawText(canvas, firstLine, lastLine);
325 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900327 private boolean isJustificationRequired(int lineNum) {
Seigo Nonaka4b4730d2017-03-31 09:42:16 -0700328 if (mJustificationMode == JUSTIFICATION_MODE_NONE) return false;
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900329 final int lineEnd = getLineEnd(lineNum);
330 return lineEnd < mText.length() && mText.charAt(lineEnd - 1) != '\n';
331 }
332
333 private float getJustifyWidth(int lineNum) {
334 Alignment paraAlign = mAlignment;
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900335
336 int left = 0;
337 int right = mWidth;
338
339 final int dir = getParagraphDirection(lineNum);
340
341 ParagraphStyle[] spans = NO_PARA_SPANS;
342 if (mSpannedText) {
343 Spanned sp = (Spanned) mText;
344 final int start = getLineStart(lineNum);
345
346 final boolean isFirstParaLine = (start == 0 || mText.charAt(start - 1) == '\n');
347
348 if (isFirstParaLine) {
349 final int spanEnd = sp.nextSpanTransition(start, mText.length(),
350 ParagraphStyle.class);
351 spans = getParagraphSpans(sp, start, spanEnd, ParagraphStyle.class);
352
353 for (int n = spans.length - 1; n >= 0; n--) {
354 if (spans[n] instanceof AlignmentSpan) {
355 paraAlign = ((AlignmentSpan) spans[n]).getAlignment();
356 break;
357 }
358 }
359 }
360
361 final int length = spans.length;
362 boolean useFirstLineMargin = isFirstParaLine;
363 for (int n = 0; n < length; n++) {
364 if (spans[n] instanceof LeadingMarginSpan2) {
365 int count = ((LeadingMarginSpan2) spans[n]).getLeadingMarginLineCount();
366 int startLine = getLineForOffset(sp.getSpanStart(spans[n]));
367 if (lineNum < startLine + count) {
368 useFirstLineMargin = true;
369 break;
370 }
371 }
372 }
373 for (int n = 0; n < length; n++) {
374 if (spans[n] instanceof LeadingMarginSpan) {
375 LeadingMarginSpan margin = (LeadingMarginSpan) spans[n];
376 if (dir == DIR_RIGHT_TO_LEFT) {
377 right -= margin.getLeadingMargin(useFirstLineMargin);
378 } else {
379 left += margin.getLeadingMargin(useFirstLineMargin);
380 }
381 }
382 }
383 }
384
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900385 final Alignment align;
386 if (paraAlign == Alignment.ALIGN_LEFT) {
387 align = (dir == DIR_LEFT_TO_RIGHT) ? Alignment.ALIGN_NORMAL : Alignment.ALIGN_OPPOSITE;
388 } else if (paraAlign == Alignment.ALIGN_RIGHT) {
389 align = (dir == DIR_LEFT_TO_RIGHT) ? Alignment.ALIGN_OPPOSITE : Alignment.ALIGN_NORMAL;
390 } else {
391 align = paraAlign;
392 }
393
394 final int indentWidth;
395 if (align == Alignment.ALIGN_NORMAL) {
396 if (dir == DIR_LEFT_TO_RIGHT) {
397 indentWidth = getIndentAdjust(lineNum, Alignment.ALIGN_LEFT);
398 } else {
399 indentWidth = -getIndentAdjust(lineNum, Alignment.ALIGN_RIGHT);
400 }
401 } else if (align == Alignment.ALIGN_OPPOSITE) {
402 if (dir == DIR_LEFT_TO_RIGHT) {
403 indentWidth = -getIndentAdjust(lineNum, Alignment.ALIGN_RIGHT);
404 } else {
405 indentWidth = getIndentAdjust(lineNum, Alignment.ALIGN_LEFT);
406 }
407 } else { // Alignment.ALIGN_CENTER
408 indentWidth = getIndentAdjust(lineNum, Alignment.ALIGN_CENTER);
409 }
410
411 return right - left - indentWidth;
412 }
413
Gilles Debunne6c488de2012-03-01 16:20:35 -0800414 /**
415 * @hide
416 */
Mathew Inwoodefeab842018-08-14 15:21:30 +0100417 @UnsupportedAppUsage
Gilles Debunne6c488de2012-03-01 16:20:35 -0800418 public void drawText(Canvas canvas, int firstLine, int lastLine) {
419 int previousLineBottom = getLineTop(firstLine);
420 int previousLineEnd = getLineStart(firstLine);
Doug Felt71b8dd72010-02-16 17:27:09 -0800421 ParagraphStyle[] spans = NO_PARA_SPANS;
Doug Feltc982f602010-05-25 11:51:40 -0700422 int spanEnd = 0;
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -0700423 final TextPaint paint = mWorkPaint;
424 paint.set(mPaint);
Gilles Debunne6c488de2012-03-01 16:20:35 -0800425 CharSequence buf = mText;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426
Doug Feltc0ccf0c2011-06-23 16:13:18 -0700427 Alignment paraAlign = mAlignment;
Doug Feltc982f602010-05-25 11:51:40 -0700428 TabStops tabStops = null;
429 boolean tabStopsIsInitialized = false;
Doug Felt9f7a4442010-03-01 12:45:56 -0800430
Doug Felte8e45f22010-03-29 14:58:40 -0700431 TextLine tl = TextLine.obtain();
Doug Feltc982f602010-05-25 11:51:40 -0700432
Gilles Debunne6c488de2012-03-01 16:20:35 -0800433 // Draw the lines, one at a time.
434 // The baseline is the top of the following line minus the current line's descent.
Raph Levien26d443a2015-03-30 14:18:32 -0700435 for (int lineNum = firstLine; lineNum <= lastLine; lineNum++) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800436 int start = previousLineEnd;
Raph Levien26d443a2015-03-30 14:18:32 -0700437 previousLineEnd = getLineStart(lineNum + 1);
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900438 final boolean justify = isJustificationRequired(lineNum);
Raph Levien26d443a2015-03-30 14:18:32 -0700439 int end = getLineVisibleEnd(lineNum, start, previousLineEnd);
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -0700440 paint.setHyphenEdit(getHyphen(lineNum));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800441
442 int ltop = previousLineBottom;
Raph Levien26d443a2015-03-30 14:18:32 -0700443 int lbottom = getLineTop(lineNum + 1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 previousLineBottom = lbottom;
Raph Levien26d443a2015-03-30 14:18:32 -0700445 int lbaseline = lbottom - getLineDescent(lineNum);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800446
Raph Levien26d443a2015-03-30 14:18:32 -0700447 int dir = getParagraphDirection(lineNum);
Doug Feltc982f602010-05-25 11:51:40 -0700448 int left = 0;
449 int right = mWidth;
450
Gilles Debunne6c488de2012-03-01 16:20:35 -0800451 if (mSpannedText) {
Doug Feltc982f602010-05-25 11:51:40 -0700452 Spanned sp = (Spanned) buf;
Gilles Debunne6c488de2012-03-01 16:20:35 -0800453 int textLength = buf.length();
454 boolean isFirstParaLine = (start == 0 || buf.charAt(start - 1) == '\n');
Doug Felt0c702b82010-05-14 10:55:42 -0700455
Doug Feltc982f602010-05-25 11:51:40 -0700456 // New batch of paragraph styles, collect into spans array.
457 // Compute the alignment, last alignment style wins.
458 // Reset tabStops, we'll rebuild if we encounter a line with
459 // tabs.
460 // We expect paragraph spans to be relatively infrequent, use
461 // spanEnd so that we can check less frequently. Since
462 // paragraph styles ought to apply to entire paragraphs, we can
463 // just collect the ones present at the start of the paragraph.
464 // If spanEnd is before the end of the paragraph, that's not
465 // our problem.
Raph Levien26d443a2015-03-30 14:18:32 -0700466 if (start >= spanEnd && (lineNum == firstLine || isFirstParaLine)) {
Doug Feltc982f602010-05-25 11:51:40 -0700467 spanEnd = sp.nextSpanTransition(start, textLength,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468 ParagraphStyle.class);
Eric Fischer74d31ef2010-08-05 15:29:36 -0700469 spans = getParagraphSpans(sp, start, spanEnd, ParagraphStyle.class);
Doug Felt9f7a4442010-03-01 12:45:56 -0800470
Doug Feltc0ccf0c2011-06-23 16:13:18 -0700471 paraAlign = mAlignment;
Gilles Debunne6c488de2012-03-01 16:20:35 -0800472 for (int n = spans.length - 1; n >= 0; n--) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800473 if (spans[n] instanceof AlignmentSpan) {
Doug Feltc0ccf0c2011-06-23 16:13:18 -0700474 paraAlign = ((AlignmentSpan) spans[n]).getAlignment();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800475 break;
476 }
477 }
Doug Felt0c702b82010-05-14 10:55:42 -0700478
Doug Feltc982f602010-05-25 11:51:40 -0700479 tabStopsIsInitialized = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800480 }
Doug Felt9f7a4442010-03-01 12:45:56 -0800481
Doug Feltc982f602010-05-25 11:51:40 -0700482 // Draw all leading margin spans. Adjust left or right according
483 // to the paragraph direction of the line.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800484 final int length = spans.length;
Anish Athalyeab08c6d2014-08-08 12:09:58 -0700485 boolean useFirstLineMargin = isFirstParaLine;
486 for (int n = 0; n < length; n++) {
487 if (spans[n] instanceof LeadingMarginSpan2) {
488 int count = ((LeadingMarginSpan2) spans[n]).getLeadingMarginLineCount();
489 int startLine = getLineForOffset(sp.getSpanStart(spans[n]));
490 // if there is more than one LeadingMarginSpan2, use
491 // the count that is greatest
Raph Levien26d443a2015-03-30 14:18:32 -0700492 if (lineNum < startLine + count) {
Anish Athalyeab08c6d2014-08-08 12:09:58 -0700493 useFirstLineMargin = true;
494 break;
495 }
496 }
497 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800498 for (int n = 0; n < length; n++) {
499 if (spans[n] instanceof LeadingMarginSpan) {
500 LeadingMarginSpan margin = (LeadingMarginSpan) spans[n];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800501 if (dir == DIR_RIGHT_TO_LEFT) {
Gilles Debunne6c488de2012-03-01 16:20:35 -0800502 margin.drawLeadingMargin(canvas, paint, right, dir, ltop,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503 lbaseline, lbottom, buf,
Doug Felt71b8dd72010-02-16 17:27:09 -0800504 start, end, isFirstParaLine, this);
Doug Feltc982f602010-05-25 11:51:40 -0700505 right -= margin.getLeadingMargin(useFirstLineMargin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800506 } else {
Gilles Debunne6c488de2012-03-01 16:20:35 -0800507 margin.drawLeadingMargin(canvas, paint, left, dir, ltop,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800508 lbaseline, lbottom, buf,
Doug Felt71b8dd72010-02-16 17:27:09 -0800509 start, end, isFirstParaLine, this);
Doug Feltc982f602010-05-25 11:51:40 -0700510 left += margin.getLeadingMargin(useFirstLineMargin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800511 }
512 }
513 }
514 }
515
Roozbeh Pournader112d9c72015-08-07 12:44:41 -0700516 boolean hasTab = getLineContainsTab(lineNum);
Doug Feltc982f602010-05-25 11:51:40 -0700517 // Can't tell if we have tabs for sure, currently
Roozbeh Pournader112d9c72015-08-07 12:44:41 -0700518 if (hasTab && !tabStopsIsInitialized) {
Doug Feltc982f602010-05-25 11:51:40 -0700519 if (tabStops == null) {
520 tabStops = new TabStops(TAB_INCREMENT, spans);
521 } else {
522 tabStops.reset(TAB_INCREMENT, spans);
523 }
524 tabStopsIsInitialized = true;
525 }
526
Doug Feltc0ccf0c2011-06-23 16:13:18 -0700527 // Determine whether the line aligns to normal, opposite, or center.
528 Alignment align = paraAlign;
529 if (align == Alignment.ALIGN_LEFT) {
530 align = (dir == DIR_LEFT_TO_RIGHT) ?
531 Alignment.ALIGN_NORMAL : Alignment.ALIGN_OPPOSITE;
532 } else if (align == Alignment.ALIGN_RIGHT) {
533 align = (dir == DIR_LEFT_TO_RIGHT) ?
534 Alignment.ALIGN_OPPOSITE : Alignment.ALIGN_NORMAL;
535 }
536
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800537 int x;
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900538 final int indentWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800539 if (align == Alignment.ALIGN_NORMAL) {
540 if (dir == DIR_LEFT_TO_RIGHT) {
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900541 indentWidth = getIndentAdjust(lineNum, Alignment.ALIGN_LEFT);
542 x = left + indentWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800543 } else {
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900544 indentWidth = -getIndentAdjust(lineNum, Alignment.ALIGN_RIGHT);
545 x = right - indentWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800546 }
547 } else {
Raph Levien26d443a2015-03-30 14:18:32 -0700548 int max = (int)getLineExtent(lineNum, tabStops, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800549 if (align == Alignment.ALIGN_OPPOSITE) {
Doug Feltc982f602010-05-25 11:51:40 -0700550 if (dir == DIR_LEFT_TO_RIGHT) {
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900551 indentWidth = -getIndentAdjust(lineNum, Alignment.ALIGN_RIGHT);
552 x = right - max - indentWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800553 } else {
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900554 indentWidth = getIndentAdjust(lineNum, Alignment.ALIGN_LEFT);
555 x = left - max + indentWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800556 }
Doug Feltc982f602010-05-25 11:51:40 -0700557 } else { // Alignment.ALIGN_CENTER
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900558 indentWidth = getIndentAdjust(lineNum, Alignment.ALIGN_CENTER);
Doug Feltc982f602010-05-25 11:51:40 -0700559 max = max & ~1;
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900560 x = ((right + left - max) >> 1) + indentWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 }
562 }
563
Raph Levien26d443a2015-03-30 14:18:32 -0700564 Directions directions = getLineDirections(lineNum);
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900565 if (directions == DIRS_ALL_LEFT_TO_RIGHT && !mSpannedText && !hasTab && !justify) {
Doug Felt71b8dd72010-02-16 17:27:09 -0800566 // XXX: assumes there's nothing additional to be done
Gilles Debunne6c488de2012-03-01 16:20:35 -0800567 canvas.drawText(buf, start, end, x, lbaseline, paint);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 } else {
Mihai Popace642dc2018-05-24 14:25:11 +0100569 tl.set(paint, buf, start, end, dir, directions, hasTab, tabStops,
570 getEllipsisStart(lineNum),
571 getEllipsisStart(lineNum) + getEllipsisCount(lineNum));
Seigo Nonaka09da71a2016-11-28 16:24:14 +0900572 if (justify) {
573 tl.justify(right - left - indentWidth);
574 }
Gilles Debunne6c488de2012-03-01 16:20:35 -0800575 tl.draw(canvas, x, ltop, lbaseline, lbottom);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800576 }
577 }
Doug Feltc982f602010-05-25 11:51:40 -0700578
Doug Felte8e45f22010-03-29 14:58:40 -0700579 TextLine.recycle(tl);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800580 }
581
582 /**
Gilles Debunne6c488de2012-03-01 16:20:35 -0800583 * @hide
584 */
Mathew Inwoodefeab842018-08-14 15:21:30 +0100585 @UnsupportedAppUsage
Gilles Debunne6c488de2012-03-01 16:20:35 -0800586 public void drawBackground(Canvas canvas, Path highlight, Paint highlightPaint,
587 int cursorOffsetVertical, int firstLine, int lastLine) {
588 // First, draw LineBackgroundSpans.
589 // LineBackgroundSpans know nothing about the alignment, margins, or
590 // direction of the layout or line. XXX: Should they?
591 // They are evaluated at each line.
592 if (mSpannedText) {
Gilles Debunneeca5b732012-04-25 18:48:42 -0700593 if (mLineBackgroundSpans == null) {
594 mLineBackgroundSpans = new SpanSet<LineBackgroundSpan>(LineBackgroundSpan.class);
Gilles Debunne60e3b3f2012-03-13 11:26:05 -0700595 }
Gilles Debunne6c488de2012-03-01 16:20:35 -0800596
Gilles Debunne60e3b3f2012-03-13 11:26:05 -0700597 Spanned buffer = (Spanned) mText;
598 int textLength = buffer.length();
Gilles Debunneeca5b732012-04-25 18:48:42 -0700599 mLineBackgroundSpans.init(buffer, 0, textLength);
Gilles Debunne6c488de2012-03-01 16:20:35 -0800600
Gilles Debunneeca5b732012-04-25 18:48:42 -0700601 if (mLineBackgroundSpans.numberOfSpans > 0) {
Gilles Debunne60e3b3f2012-03-13 11:26:05 -0700602 int previousLineBottom = getLineTop(firstLine);
603 int previousLineEnd = getLineStart(firstLine);
604 ParagraphStyle[] spans = NO_PARA_SPANS;
605 int spansLength = 0;
606 TextPaint paint = mPaint;
607 int spanEnd = 0;
608 final int width = mWidth;
609 for (int i = firstLine; i <= lastLine; i++) {
610 int start = previousLineEnd;
611 int end = getLineStart(i + 1);
612 previousLineEnd = end;
Gilles Debunne6c488de2012-03-01 16:20:35 -0800613
Gilles Debunne60e3b3f2012-03-13 11:26:05 -0700614 int ltop = previousLineBottom;
615 int lbottom = getLineTop(i + 1);
616 previousLineBottom = lbottom;
617 int lbaseline = lbottom - getLineDescent(i);
618
Haoyu Zhang60b09832018-09-10 10:49:56 -0700619 if (end >= spanEnd) {
Gilles Debunne60e3b3f2012-03-13 11:26:05 -0700620 // These should be infrequent, so we'll use this so that
621 // we don't have to check as often.
Gilles Debunneeca5b732012-04-25 18:48:42 -0700622 spanEnd = mLineBackgroundSpans.getNextTransition(start, textLength);
Gilles Debunne60e3b3f2012-03-13 11:26:05 -0700623 // All LineBackgroundSpans on a line contribute to its background.
624 spansLength = 0;
625 // Duplication of the logic of getParagraphSpans
626 if (start != end || start == 0) {
627 // Equivalent to a getSpans(start, end), but filling the 'spans' local
628 // array instead to reduce memory allocation
Gilles Debunneeca5b732012-04-25 18:48:42 -0700629 for (int j = 0; j < mLineBackgroundSpans.numberOfSpans; j++) {
630 // equal test is valid since both intervals are not empty by
631 // construction
632 if (mLineBackgroundSpans.spanStarts[j] >= end ||
633 mLineBackgroundSpans.spanEnds[j] <= start) continue;
Adam Lesinski776abc22014-03-07 11:30:59 -0500634 spans = GrowingArrayUtils.append(
635 spans, spansLength, mLineBackgroundSpans.spans[j]);
636 spansLength++;
Gilles Debunne60e3b3f2012-03-13 11:26:05 -0700637 }
638 }
639 }
640
641 for (int n = 0; n < spansLength; n++) {
642 LineBackgroundSpan lineBackgroundSpan = (LineBackgroundSpan) spans[n];
643 lineBackgroundSpan.drawBackground(canvas, paint, 0, width,
644 ltop, lbaseline, lbottom,
645 buffer, start, end, i);
646 }
Gilles Debunne6c488de2012-03-01 16:20:35 -0800647 }
648 }
Gilles Debunneeca5b732012-04-25 18:48:42 -0700649 mLineBackgroundSpans.recycle();
Gilles Debunne6c488de2012-03-01 16:20:35 -0800650 }
651
652 // There can be a highlight even without spans if we are drawing
653 // a non-spanned transformation of a spanned editing buffer.
654 if (highlight != null) {
655 if (cursorOffsetVertical != 0) canvas.translate(0, cursorOffsetVertical);
656 canvas.drawPath(highlight, highlightPaint);
657 if (cursorOffsetVertical != 0) canvas.translate(0, -cursorOffsetVertical);
658 }
659 }
660
661 /**
662 * @param canvas
663 * @return The range of lines that need to be drawn, possibly empty.
664 * @hide
665 */
Mathew Inwoodefeab842018-08-14 15:21:30 +0100666 @UnsupportedAppUsage
Gilles Debunne6c488de2012-03-01 16:20:35 -0800667 public long getLineRangeForDraw(Canvas canvas) {
668 int dtop, dbottom;
669
670 synchronized (sTempRect) {
671 if (!canvas.getClipBounds(sTempRect)) {
672 // Negative range end used as a special flag
673 return TextUtils.packRangeInLong(0, -1);
674 }
675
676 dtop = sTempRect.top;
677 dbottom = sTempRect.bottom;
678 }
679
680 final int top = Math.max(dtop, 0);
681 final int bottom = Math.min(getLineTop(getLineCount()), dbottom);
682
Gilles Debunne2fba3382012-06-11 17:46:24 -0700683 if (top >= bottom) return TextUtils.packRangeInLong(0, -1);
Gilles Debunne6c488de2012-03-01 16:20:35 -0800684 return TextUtils.packRangeInLong(getLineForVertical(top), getLineForVertical(bottom));
685 }
686
687 /**
Doug Feltc982f602010-05-25 11:51:40 -0700688 * Return the start position of the line, given the left and right bounds
689 * of the margins.
Doug Felt0c702b82010-05-14 10:55:42 -0700690 *
Doug Feltc982f602010-05-25 11:51:40 -0700691 * @param line the line index
692 * @param left the left bounds (0, or leading margin if ltr para)
693 * @param right the right bounds (width, minus leading margin if rtl para)
694 * @return the start position of the line (to right of line if rtl para)
695 */
696 private int getLineStartPos(int line, int left, int right) {
697 // Adjust the point at which to start rendering depending on the
698 // alignment of the paragraph.
699 Alignment align = getParagraphAlignment(line);
700 int dir = getParagraphDirection(line);
701
Doug Feltc0ccf0c2011-06-23 16:13:18 -0700702 if (align == Alignment.ALIGN_LEFT) {
Fabrice Di Megliodb24f0a2012-10-03 17:17:14 -0700703 align = (dir == DIR_LEFT_TO_RIGHT) ? Alignment.ALIGN_NORMAL : Alignment.ALIGN_OPPOSITE;
704 } else if (align == Alignment.ALIGN_RIGHT) {
705 align = (dir == DIR_LEFT_TO_RIGHT) ? Alignment.ALIGN_OPPOSITE : Alignment.ALIGN_NORMAL;
706 }
707
708 int x;
709 if (align == Alignment.ALIGN_NORMAL) {
Doug Feltc982f602010-05-25 11:51:40 -0700710 if (dir == DIR_LEFT_TO_RIGHT) {
Raph Levien2ea52902015-07-01 14:39:31 -0700711 x = left + getIndentAdjust(line, Alignment.ALIGN_LEFT);
Doug Feltc982f602010-05-25 11:51:40 -0700712 } else {
Raph Levien2ea52902015-07-01 14:39:31 -0700713 x = right + getIndentAdjust(line, Alignment.ALIGN_RIGHT);
Doug Feltc982f602010-05-25 11:51:40 -0700714 }
715 } else {
716 TabStops tabStops = null;
717 if (mSpannedText && getLineContainsTab(line)) {
718 Spanned spanned = (Spanned) mText;
719 int start = getLineStart(line);
720 int spanEnd = spanned.nextSpanTransition(start, spanned.length(),
721 TabStopSpan.class);
Gilles Debunne6c488de2012-03-01 16:20:35 -0800722 TabStopSpan[] tabSpans = getParagraphSpans(spanned, start, spanEnd,
723 TabStopSpan.class);
Doug Feltc982f602010-05-25 11:51:40 -0700724 if (tabSpans.length > 0) {
725 tabStops = new TabStops(TAB_INCREMENT, tabSpans);
726 }
727 }
728 int max = (int)getLineExtent(line, tabStops, false);
Fabrice Di Megliodb24f0a2012-10-03 17:17:14 -0700729 if (align == Alignment.ALIGN_OPPOSITE) {
Doug Feltc982f602010-05-25 11:51:40 -0700730 if (dir == DIR_LEFT_TO_RIGHT) {
Raph Levien2ea52902015-07-01 14:39:31 -0700731 x = right - max + getIndentAdjust(line, Alignment.ALIGN_RIGHT);
Doug Feltc982f602010-05-25 11:51:40 -0700732 } else {
Fabrice Di Megliodb24f0a2012-10-03 17:17:14 -0700733 // max is negative here
Raph Levien2ea52902015-07-01 14:39:31 -0700734 x = left - max + getIndentAdjust(line, Alignment.ALIGN_LEFT);
Doug Feltc982f602010-05-25 11:51:40 -0700735 }
736 } else { // Alignment.ALIGN_CENTER
737 max = max & ~1;
Raph Levien2ea52902015-07-01 14:39:31 -0700738 x = (left + right - max) >> 1 + getIndentAdjust(line, Alignment.ALIGN_CENTER);
Doug Feltc982f602010-05-25 11:51:40 -0700739 }
740 }
741 return x;
742 }
743
744 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800745 * Return the text that is displayed by this Layout.
746 */
747 public final CharSequence getText() {
748 return mText;
749 }
750
751 /**
752 * Return the base Paint properties for this layout.
753 * Do NOT change the paint, which may result in funny
754 * drawing for this layout.
755 */
756 public final TextPaint getPaint() {
757 return mPaint;
758 }
759
760 /**
761 * Return the width of this layout.
762 */
763 public final int getWidth() {
764 return mWidth;
765 }
766
767 /**
768 * Return the width to which this Layout is ellipsizing, or
769 * {@link #getWidth} if it is not doing anything special.
770 */
771 public int getEllipsizedWidth() {
772 return mWidth;
773 }
774
775 /**
776 * Increase the width of this layout to the specified width.
Doug Felt71b8dd72010-02-16 17:27:09 -0800777 * Be careful to use this only when you know it is appropriate&mdash;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800778 * it does not cause the text to reflow to use the full new width.
779 */
780 public final void increaseWidthTo(int wid) {
781 if (wid < mWidth) {
782 throw new RuntimeException("attempted to reduce Layout width");
783 }
784
785 mWidth = wid;
786 }
Doug Felt9f7a4442010-03-01 12:45:56 -0800787
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800788 /**
789 * Return the total height of this layout.
790 */
791 public int getHeight() {
Doug Felt71b8dd72010-02-16 17:27:09 -0800792 return getLineTop(getLineCount());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800793 }
794
795 /**
Siyamed Sinir0745c722016-05-31 20:39:33 -0700796 * Return the total height of this layout.
797 *
798 * @param cap if true and max lines is set, returns the height of the layout at the max lines.
799 *
800 * @hide
801 */
802 public int getHeight(boolean cap) {
803 return getHeight();
804 }
805
806 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800807 * Return the base alignment of this layout.
808 */
809 public final Alignment getAlignment() {
810 return mAlignment;
811 }
812
813 /**
814 * Return what the text height is multiplied by to get the line height.
815 */
816 public final float getSpacingMultiplier() {
817 return mSpacingMult;
818 }
819
820 /**
821 * Return the number of units of leading that are added to each line.
822 */
823 public final float getSpacingAdd() {
824 return mSpacingAdd;
825 }
826
827 /**
Doug Feltcb3791202011-07-07 11:57:48 -0700828 * Return the heuristic used to determine paragraph text direction.
829 * @hide
830 */
831 public final TextDirectionHeuristic getTextDirectionHeuristic() {
832 return mTextDir;
833 }
834
835 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800836 * Return the number of lines of text in this layout.
837 */
838 public abstract int getLineCount();
Doug Felt9f7a4442010-03-01 12:45:56 -0800839
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800840 /**
841 * Return the baseline for the specified line (0&hellip;getLineCount() - 1)
842 * If bounds is not null, return the top, left, right, bottom extents
843 * of the specified line in it.
844 * @param line which line to examine (0..getLineCount() - 1)
845 * @param bounds Optional. If not null, it returns the extent of the line
846 * @return the Y-coordinate of the baseline
847 */
848 public int getLineBounds(int line, Rect bounds) {
849 if (bounds != null) {
850 bounds.left = 0; // ???
851 bounds.top = getLineTop(line);
852 bounds.right = mWidth; // ???
Doug Felt71b8dd72010-02-16 17:27:09 -0800853 bounds.bottom = getLineTop(line + 1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800854 }
855 return getLineBaseline(line);
856 }
857
858 /**
Doug Felt71b8dd72010-02-16 17:27:09 -0800859 * Return the vertical position of the top of the specified line
860 * (0&hellip;getLineCount()).
861 * If the specified line is equal to the line count, returns the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800862 * bottom of the last line.
863 */
864 public abstract int getLineTop(int line);
865
866 /**
Doug Felt71b8dd72010-02-16 17:27:09 -0800867 * Return the descent of the specified line(0&hellip;getLineCount() - 1).
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800868 */
869 public abstract int getLineDescent(int line);
870
871 /**
Doug Felt71b8dd72010-02-16 17:27:09 -0800872 * Return the text offset of the beginning of the specified line (
873 * 0&hellip;getLineCount()). If the specified line is equal to the line
874 * count, returns the length of the text.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800875 */
876 public abstract int getLineStart(int line);
877
878 /**
Doug Felt71b8dd72010-02-16 17:27:09 -0800879 * Returns the primary directionality of the paragraph containing the
880 * specified line, either 1 for left-to-right lines, or -1 for right-to-left
881 * lines (see {@link #DIR_LEFT_TO_RIGHT}, {@link #DIR_RIGHT_TO_LEFT}).
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800882 */
883 public abstract int getParagraphDirection(int line);
884
885 /**
The Android Open Source Project10592532009-03-18 17:39:46 -0700886 * Returns whether the specified line contains one or more
Roozbeh Pournader112d9c72015-08-07 12:44:41 -0700887 * characters that need to be handled specially, like tabs.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888 */
889 public abstract boolean getLineContainsTab(int line);
890
891 /**
Doug Felt71b8dd72010-02-16 17:27:09 -0800892 * Returns the directional run information for the specified line.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800893 * The array alternates counts of characters in left-to-right
894 * and right-to-left segments of the line.
Doug Felt71b8dd72010-02-16 17:27:09 -0800895 *
896 * <p>NOTE: this is inadequate to support bidirectional text, and will change.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800897 */
898 public abstract Directions getLineDirections(int line);
899
900 /**
901 * Returns the (negative) number of extra pixels of ascent padding in the
902 * top line of the Layout.
903 */
904 public abstract int getTopPadding();
905
906 /**
907 * Returns the number of extra pixels of descent padding in the
908 * bottom line of the Layout.
909 */
910 public abstract int getBottomPadding();
911
Raph Levien26d443a2015-03-30 14:18:32 -0700912 /**
913 * Returns the hyphen edit for a line.
914 *
915 * @hide
916 */
917 public int getHyphen(int line) {
918 return 0;
919 }
920
Raph Levien2ea52902015-07-01 14:39:31 -0700921 /**
922 * Returns the left indent for a line.
923 *
924 * @hide
925 */
926 public int getIndentAdjust(int line, Alignment alignment) {
927 return 0;
928 }
Doug Felt4e0c5e52010-03-15 16:56:02 -0700929
930 /**
931 * Returns true if the character at offset and the preceding character
932 * are at different run levels (and thus there's a split caret).
933 * @param offset the offset
934 * @return true if at a level boundary
Gilles Debunnef75c97e2011-02-10 16:09:53 -0800935 * @hide
Doug Felt4e0c5e52010-03-15 16:56:02 -0700936 */
Mathew Inwoodefeab842018-08-14 15:21:30 +0100937 @UnsupportedAppUsage
Gilles Debunnef75c97e2011-02-10 16:09:53 -0800938 public boolean isLevelBoundary(int offset) {
Doug Felt9f7a4442010-03-01 12:45:56 -0800939 int line = getLineForOffset(offset);
Doug Felt4e0c5e52010-03-15 16:56:02 -0700940 Directions dirs = getLineDirections(line);
941 if (dirs == DIRS_ALL_LEFT_TO_RIGHT || dirs == DIRS_ALL_RIGHT_TO_LEFT) {
942 return false;
943 }
944
945 int[] runs = dirs.mDirections;
Doug Felt9f7a4442010-03-01 12:45:56 -0800946 int lineStart = getLineStart(line);
Doug Felt4e0c5e52010-03-15 16:56:02 -0700947 int lineEnd = getLineEnd(line);
948 if (offset == lineStart || offset == lineEnd) {
949 int paraLevel = getParagraphDirection(line) == 1 ? 0 : 1;
950 int runIndex = offset == lineStart ? 0 : runs.length - 2;
951 return ((runs[runIndex + 1] >>> RUN_LEVEL_SHIFT) & RUN_LEVEL_MASK) != paraLevel;
952 }
953
954 offset -= lineStart;
Doug Felt9f7a4442010-03-01 12:45:56 -0800955 for (int i = 0; i < runs.length; i += 2) {
Doug Felt4e0c5e52010-03-15 16:56:02 -0700956 if (offset == runs[i]) {
957 return true;
Doug Felt9f7a4442010-03-01 12:45:56 -0800958 }
959 }
Doug Felt4e0c5e52010-03-15 16:56:02 -0700960 return false;
Doug Felt9f7a4442010-03-01 12:45:56 -0800961 }
962
Fabrice Di Meglio34d2eba2011-08-31 19:46:15 -0700963 /**
964 * Returns true if the character at offset is right to left (RTL).
965 * @param offset the offset
966 * @return true if the character is RTL, false if it is LTR
967 */
968 public boolean isRtlCharAt(int offset) {
969 int line = getLineForOffset(offset);
970 Directions dirs = getLineDirections(line);
971 if (dirs == DIRS_ALL_LEFT_TO_RIGHT) {
972 return false;
973 }
974 if (dirs == DIRS_ALL_RIGHT_TO_LEFT) {
975 return true;
976 }
977 int[] runs = dirs.mDirections;
978 int lineStart = getLineStart(line);
979 for (int i = 0; i < runs.length; i += 2) {
Raph Levien87506202014-09-04 12:47:03 -0700980 int start = lineStart + runs[i];
981 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
982 if (offset >= start && offset < limit) {
Fabrice Di Meglio34d2eba2011-08-31 19:46:15 -0700983 int level = (runs[i+1] >>> RUN_LEVEL_SHIFT) & RUN_LEVEL_MASK;
984 return ((level & 1) != 0);
985 }
986 }
987 // Should happen only if the offset is "out of bounds"
988 return false;
989 }
990
Keisuke Kuroyanagif0bb87b72016-02-08 23:52:55 +0900991 /**
992 * Returns the range of the run that the character at offset belongs to.
993 * @param offset the offset
994 * @return The range of the run
995 * @hide
996 */
997 public long getRunRange(int offset) {
998 int line = getLineForOffset(offset);
999 Directions dirs = getLineDirections(line);
1000 if (dirs == DIRS_ALL_LEFT_TO_RIGHT || dirs == DIRS_ALL_RIGHT_TO_LEFT) {
1001 return TextUtils.packRangeInLong(0, getLineEnd(line));
1002 }
1003 int[] runs = dirs.mDirections;
1004 int lineStart = getLineStart(line);
1005 for (int i = 0; i < runs.length; i += 2) {
1006 int start = lineStart + runs[i];
1007 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
1008 if (offset >= start && offset < limit) {
1009 return TextUtils.packRangeInLong(start, limit);
1010 }
1011 }
1012 // Should happen only if the offset is "out of bounds"
1013 return TextUtils.packRangeInLong(0, getLineEnd(line));
1014 }
1015
Mihai Popa7626c862018-05-09 17:31:48 +01001016 /**
1017 * Checks if the trailing BiDi level should be used for an offset
1018 *
1019 * This method is useful when the offset is at the BiDi level transition point and determine
1020 * which run need to be used. For example, let's think about following input: (L* denotes
1021 * Left-to-Right characters, R* denotes Right-to-Left characters.)
1022 * Input (Logical Order): L1 L2 L3 R1 R2 R3 L4 L5 L6
1023 * Input (Display Order): L1 L2 L3 R3 R2 R1 L4 L5 L6
1024 *
1025 * Then, think about selecting the range (3, 6). The offset=3 and offset=6 are ambiguous here
1026 * since they are at the BiDi transition point. In Android, the offset is considered to be
1027 * associated with the trailing run if the BiDi level of the trailing run is higher than of the
1028 * previous run. In this case, the BiDi level of the input text is as follows:
1029 *
1030 * Input (Logical Order): L1 L2 L3 R1 R2 R3 L4 L5 L6
1031 * BiDi Run: [ Run 0 ][ Run 1 ][ Run 2 ]
1032 * BiDi Level: 0 0 0 1 1 1 0 0 0
1033 *
1034 * Thus, offset = 3 is part of Run 1 and this method returns true for offset = 3, since the BiDi
1035 * level of Run 1 is higher than the level of Run 0. Similarly, the offset = 6 is a part of Run
1036 * 1 and this method returns false for the offset = 6 since the BiDi level of Run 1 is higher
1037 * than the level of Run 2.
1038 *
1039 * @returns true if offset is at the BiDi level transition point and trailing BiDi level is
1040 * higher than previous BiDi level. See above for the detail.
1041 * @hide
1042 */
Seigo Nonaka19e75a62018-05-16 16:57:33 -07001043 @VisibleForTesting
1044 public boolean primaryIsTrailingPrevious(int offset) {
Doug Felt9f7a4442010-03-01 12:45:56 -08001045 int line = getLineForOffset(offset);
1046 int lineStart = getLineStart(line);
Doug Felt4e0c5e52010-03-15 16:56:02 -07001047 int lineEnd = getLineEnd(line);
Doug Felt9f7a4442010-03-01 12:45:56 -08001048 int[] runs = getLineDirections(line).mDirections;
1049
1050 int levelAt = -1;
1051 for (int i = 0; i < runs.length; i += 2) {
1052 int start = lineStart + runs[i];
1053 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
1054 if (limit > lineEnd) {
1055 limit = lineEnd;
1056 }
1057 if (offset >= start && offset < limit) {
1058 if (offset > start) {
1059 // Previous character is at same level, so don't use trailing.
1060 return false;
1061 }
1062 levelAt = (runs[i+1] >>> RUN_LEVEL_SHIFT) & RUN_LEVEL_MASK;
1063 break;
1064 }
1065 }
1066 if (levelAt == -1) {
1067 // Offset was limit of line.
1068 levelAt = getParagraphDirection(line) == 1 ? 0 : 1;
1069 }
1070
1071 // At level boundary, check previous level.
1072 int levelBefore = -1;
1073 if (offset == lineStart) {
1074 levelBefore = getParagraphDirection(line) == 1 ? 0 : 1;
1075 } else {
1076 offset -= 1;
1077 for (int i = 0; i < runs.length; i += 2) {
1078 int start = lineStart + runs[i];
1079 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
1080 if (limit > lineEnd) {
1081 limit = lineEnd;
1082 }
1083 if (offset >= start && offset < limit) {
1084 levelBefore = (runs[i+1] >>> RUN_LEVEL_SHIFT) & RUN_LEVEL_MASK;
1085 break;
1086 }
1087 }
1088 }
1089
1090 return levelBefore < levelAt;
1091 }
1092
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 /**
Mihai Popa7626c862018-05-09 17:31:48 +01001094 * Computes in linear time the results of calling
1095 * #primaryIsTrailingPrevious for all offsets on a line.
1096 * @param line The line giving the offsets we compute the information for
1097 * @return The array of results, indexed from 0, where 0 corresponds to the line start offset
1098 * @hide
1099 */
1100 @VisibleForTesting
1101 public boolean[] primaryIsTrailingPreviousAllLineOffsets(int line) {
1102 int lineStart = getLineStart(line);
1103 int lineEnd = getLineEnd(line);
1104 int[] runs = getLineDirections(line).mDirections;
1105
1106 boolean[] trailing = new boolean[lineEnd - lineStart + 1];
1107
1108 byte[] level = new byte[lineEnd - lineStart + 1];
1109 for (int i = 0; i < runs.length; i += 2) {
1110 int start = lineStart + runs[i];
1111 int limit = start + (runs[i + 1] & RUN_LENGTH_MASK);
1112 if (limit > lineEnd) {
1113 limit = lineEnd;
1114 }
1115 level[limit - lineStart - 1] =
1116 (byte) ((runs[i + 1] >>> RUN_LEVEL_SHIFT) & RUN_LEVEL_MASK);
1117 }
1118
1119 for (int i = 0; i < runs.length; i += 2) {
1120 int start = lineStart + runs[i];
1121 byte currentLevel = (byte) ((runs[i + 1] >>> RUN_LEVEL_SHIFT) & RUN_LEVEL_MASK);
1122 trailing[start - lineStart] = currentLevel > (start == lineStart
1123 ? (getParagraphDirection(line) == 1 ? 0 : 1)
1124 : level[start - lineStart - 1]);
1125 }
1126
1127 return trailing;
1128 }
1129
1130 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001131 * Get the primary horizontal position for the specified text offset.
1132 * This is the location where a new character would be inserted in
1133 * the paragraph's primary direction.
1134 */
1135 public float getPrimaryHorizontal(int offset) {
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001136 return getPrimaryHorizontal(offset, false /* not clamped */);
Raph Levienafe8e9b2012-12-19 16:09:32 -08001137 }
1138
1139 /**
1140 * Get the primary horizontal position for the specified text offset, but
1141 * optionally clamp it so that it doesn't exceed the width of the layout.
1142 * @hide
1143 */
Mathew Inwoodefeab842018-08-14 15:21:30 +01001144 @UnsupportedAppUsage
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001145 public float getPrimaryHorizontal(int offset, boolean clamped) {
Doug Felt9f7a4442010-03-01 12:45:56 -08001146 boolean trailing = primaryIsTrailingPrevious(offset);
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001147 return getHorizontal(offset, trailing, clamped);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001148 }
1149
1150 /**
1151 * Get the secondary horizontal position for the specified text offset.
1152 * This is the location where a new character would be inserted in
1153 * the direction other than the paragraph's primary direction.
1154 */
1155 public float getSecondaryHorizontal(int offset) {
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001156 return getSecondaryHorizontal(offset, false /* not clamped */);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001157 }
1158
Raph Levienafe8e9b2012-12-19 16:09:32 -08001159 /**
1160 * Get the secondary horizontal position for the specified text offset, but
1161 * optionally clamp it so that it doesn't exceed the width of the layout.
1162 * @hide
1163 */
Mathew Inwoodefeab842018-08-14 15:21:30 +01001164 @UnsupportedAppUsage
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001165 public float getSecondaryHorizontal(int offset, boolean clamped) {
Raph Levienafe8e9b2012-12-19 16:09:32 -08001166 boolean trailing = primaryIsTrailingPrevious(offset);
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001167 return getHorizontal(offset, !trailing, clamped);
Raph Levienafe8e9b2012-12-19 16:09:32 -08001168 }
1169
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001170 private float getHorizontal(int offset, boolean primary) {
1171 return primary ? getPrimaryHorizontal(offset) : getSecondaryHorizontal(offset);
Keisuke Kuroyanagif0bb87b72016-02-08 23:52:55 +09001172 }
1173
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001174 private float getHorizontal(int offset, boolean trailing, boolean clamped) {
1175 int line = getLineForOffset(offset);
1176
Raph Levienafe8e9b2012-12-19 16:09:32 -08001177 return getHorizontal(offset, trailing, line, clamped);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001178 }
1179
Raph Levienafe8e9b2012-12-19 16:09:32 -08001180 private float getHorizontal(int offset, boolean trailing, int line, boolean clamped) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001181 int start = getLineStart(line);
Doug Felte8e45f22010-03-29 14:58:40 -07001182 int end = getLineEnd(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001183 int dir = getParagraphDirection(line);
Roozbeh Pournader112d9c72015-08-07 12:44:41 -07001184 boolean hasTab = getLineContainsTab(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001185 Directions directions = getLineDirections(line);
1186
Doug Feltc982f602010-05-25 11:51:40 -07001187 TabStops tabStops = null;
Roozbeh Pournader112d9c72015-08-07 12:44:41 -07001188 if (hasTab && mText instanceof Spanned) {
Doug Feltc982f602010-05-25 11:51:40 -07001189 // Just checking this line should be good enough, tabs should be
1190 // consistent across all lines in a paragraph.
Eric Fischer74d31ef2010-08-05 15:29:36 -07001191 TabStopSpan[] tabs = getParagraphSpans((Spanned) mText, start, end, TabStopSpan.class);
Doug Feltc982f602010-05-25 11:51:40 -07001192 if (tabs.length > 0) {
1193 tabStops = new TabStops(TAB_INCREMENT, tabs); // XXX should reuse
1194 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001195 }
1196
Doug Felte8e45f22010-03-29 14:58:40 -07001197 TextLine tl = TextLine.obtain();
Mihai Popace642dc2018-05-24 14:25:11 +01001198 tl.set(mPaint, mText, start, end, dir, directions, hasTab, tabStops,
1199 getEllipsisStart(line), getEllipsisStart(line) + getEllipsisCount(line));
Doug Felte8e45f22010-03-29 14:58:40 -07001200 float wid = tl.measure(offset - start, trailing, null);
1201 TextLine.recycle(tl);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001202
Raph Levienafe8e9b2012-12-19 16:09:32 -08001203 if (clamped && wid > mWidth) {
1204 wid = mWidth;
1205 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001206 int left = getParagraphLeft(line);
1207 int right = getParagraphRight(line);
1208
Doug Feltc982f602010-05-25 11:51:40 -07001209 return getLineStartPos(line, left, right) + wid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001210 }
1211
1212 /**
Mihai Popa7626c862018-05-09 17:31:48 +01001213 * Computes in linear time the results of calling
1214 * #getHorizontal for all offsets on a line.
1215 * @param line The line giving the offsets we compute information for
1216 * @param clamped Whether to clamp the results to the width of the layout
1217 * @param primary Whether the results should be the primary or the secondary horizontal
1218 * @return The array of results, indexed from 0, where 0 corresponds to the line start offset
1219 */
1220 private float[] getLineHorizontals(int line, boolean clamped, boolean primary) {
1221 int start = getLineStart(line);
1222 int end = getLineEnd(line);
1223 int dir = getParagraphDirection(line);
1224 boolean hasTab = getLineContainsTab(line);
1225 Directions directions = getLineDirections(line);
1226
1227 TabStops tabStops = null;
1228 if (hasTab && mText instanceof Spanned) {
1229 // Just checking this line should be good enough, tabs should be
1230 // consistent across all lines in a paragraph.
1231 TabStopSpan[] tabs = getParagraphSpans((Spanned) mText, start, end, TabStopSpan.class);
1232 if (tabs.length > 0) {
1233 tabStops = new TabStops(TAB_INCREMENT, tabs); // XXX should reuse
1234 }
1235 }
1236
1237 TextLine tl = TextLine.obtain();
Mihai Popace642dc2018-05-24 14:25:11 +01001238 tl.set(mPaint, mText, start, end, dir, directions, hasTab, tabStops,
1239 getEllipsisStart(line), getEllipsisStart(line) + getEllipsisCount(line));
Mihai Popa7626c862018-05-09 17:31:48 +01001240 boolean[] trailings = primaryIsTrailingPreviousAllLineOffsets(line);
1241 if (!primary) {
1242 for (int offset = 0; offset < trailings.length; ++offset) {
1243 trailings[offset] = !trailings[offset];
1244 }
1245 }
1246 float[] wid = tl.measureAllOffsets(trailings, null);
1247 TextLine.recycle(tl);
1248
1249 if (clamped) {
1250 for (int offset = 0; offset <= wid.length; ++offset) {
1251 if (wid[offset] > mWidth) {
1252 wid[offset] = mWidth;
1253 }
1254 }
1255 }
1256 int left = getParagraphLeft(line);
1257 int right = getParagraphRight(line);
1258
1259 int lineStartPos = getLineStartPos(line, left, right);
1260 float[] horizontal = new float[end - start + 1];
1261 for (int offset = 0; offset < horizontal.length; ++offset) {
1262 horizontal[offset] = lineStartPos + wid[offset];
1263 }
1264 return horizontal;
1265 }
1266
1267 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001268 * Get the leftmost position that should be exposed for horizontal
1269 * scrolling on the specified line.
1270 */
1271 public float getLineLeft(int line) {
Haoyu Zhang7425d982018-10-12 10:28:40 -07001272 final int dir = getParagraphDirection(line);
1273 final Alignment align = getParagraphAlignment(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001274
Haoyu Zhang7425d982018-10-12 10:28:40 -07001275 // First convert combinations of alignment and direction settings to
1276 // three basic cases: ALIGN_LEFT, ALIGN_RIGHT and ALIGN_CENTER.
1277 // For unexpected cases, it will fallback to ALIGN_LEFT.
1278 final Alignment resultAlign;
1279 switch(align) {
1280 case ALIGN_NORMAL:
1281 resultAlign =
1282 dir == DIR_RIGHT_TO_LEFT ? Alignment.ALIGN_RIGHT : Alignment.ALIGN_LEFT;
1283 break;
1284 case ALIGN_OPPOSITE:
1285 resultAlign =
1286 dir == DIR_RIGHT_TO_LEFT ? Alignment.ALIGN_LEFT : Alignment.ALIGN_RIGHT;
1287 break;
1288 case ALIGN_CENTER:
1289 resultAlign = Alignment.ALIGN_CENTER;
1290 break;
1291 case ALIGN_RIGHT:
1292 resultAlign = Alignment.ALIGN_RIGHT;
1293 break;
1294 default: /* align == Alignment.ALIGN_LEFT */
1295 resultAlign = Alignment.ALIGN_LEFT;
1296 }
1297
1298 // Here we must use getLineMax() to do the computation, because it maybe overridden by
1299 // derived class. And also note that line max equals the width of the text in that line
1300 // plus the leading margin.
1301 switch (resultAlign) {
1302 case ALIGN_CENTER:
1303 final int left = getParagraphLeft(line);
1304 final float max = getLineMax(line);
1305 // This computation only works when mWidth equals leadingMargin plus
1306 // the width of text in this line. If this condition doesn't meet anymore,
1307 // please change here too.
1308 return (float) Math.floor(left + (mWidth - max) / 2);
1309 case ALIGN_RIGHT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001310 return mWidth - getLineMax(line);
Haoyu Zhang7425d982018-10-12 10:28:40 -07001311 default: /* resultAlign == Alignment.ALIGN_LEFT */
1312 return 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001313 }
1314 }
1315
1316 /**
1317 * Get the rightmost position that should be exposed for horizontal
1318 * scrolling on the specified line.
1319 */
1320 public float getLineRight(int line) {
Haoyu Zhang7425d982018-10-12 10:28:40 -07001321 final int dir = getParagraphDirection(line);
1322 final Alignment align = getParagraphAlignment(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001323
Haoyu Zhang7425d982018-10-12 10:28:40 -07001324 final Alignment resultAlign;
1325 switch(align) {
1326 case ALIGN_NORMAL:
1327 resultAlign =
1328 dir == DIR_RIGHT_TO_LEFT ? Alignment.ALIGN_RIGHT : Alignment.ALIGN_LEFT;
1329 break;
1330 case ALIGN_OPPOSITE:
1331 resultAlign =
1332 dir == DIR_RIGHT_TO_LEFT ? Alignment.ALIGN_LEFT : Alignment.ALIGN_RIGHT;
1333 break;
1334 case ALIGN_CENTER:
1335 resultAlign = Alignment.ALIGN_CENTER;
1336 break;
1337 case ALIGN_RIGHT:
1338 resultAlign = Alignment.ALIGN_RIGHT;
1339 break;
1340 default: /* align == Alignment.ALIGN_LEFT */
1341 resultAlign = Alignment.ALIGN_LEFT;
1342 }
1343
1344 switch (resultAlign) {
1345 case ALIGN_CENTER:
1346 final int right = getParagraphRight(line);
1347 final float max = getLineMax(line);
1348 // This computation only works when mWidth equals leadingMargin plus width of the
1349 // text in this line. If this condition doesn't meet anymore, please change here.
1350 return (float) Math.ceil(right - (mWidth - max) / 2);
1351 case ALIGN_RIGHT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001352 return mWidth;
Haoyu Zhang7425d982018-10-12 10:28:40 -07001353 default: /* resultAlign == Alignment.ALIGN_LEFT */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001354 return getLineMax(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001355 }
1356 }
1357
1358 /**
Doug Felt0c702b82010-05-14 10:55:42 -07001359 * Gets the unsigned horizontal extent of the specified line, including
Doug Feltc982f602010-05-25 11:51:40 -07001360 * leading margin indent, but excluding trailing whitespace.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001361 */
1362 public float getLineMax(int line) {
Doug Feltc982f602010-05-25 11:51:40 -07001363 float margin = getParagraphLeadingMargin(line);
1364 float signedExtent = getLineExtent(line, false);
Anish Athalyec14b3ad2014-07-24 18:03:21 -07001365 return margin + (signedExtent >= 0 ? signedExtent : -signedExtent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001366 }
1367
1368 /**
Doug Feltc982f602010-05-25 11:51:40 -07001369 * Gets the unsigned horizontal extent of the specified line, including
1370 * leading margin indent and trailing whitespace.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001371 */
1372 public float getLineWidth(int line) {
Doug Feltc982f602010-05-25 11:51:40 -07001373 float margin = getParagraphLeadingMargin(line);
1374 float signedExtent = getLineExtent(line, true);
Anish Athalyec14b3ad2014-07-24 18:03:21 -07001375 return margin + (signedExtent >= 0 ? signedExtent : -signedExtent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001376 }
1377
Doug Feltc982f602010-05-25 11:51:40 -07001378 /**
1379 * Like {@link #getLineExtent(int,TabStops,boolean)} but determines the
1380 * tab stops instead of using the ones passed in.
1381 * @param line the index of the line
1382 * @param full whether to include trailing whitespace
1383 * @return the extent of the line
1384 */
1385 private float getLineExtent(int line, boolean full) {
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001386 final int start = getLineStart(line);
1387 final int end = full ? getLineEnd(line) : getLineVisibleEnd(line);
Doug Feltc982f602010-05-25 11:51:40 -07001388
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001389 final boolean hasTabs = getLineContainsTab(line);
Doug Feltc982f602010-05-25 11:51:40 -07001390 TabStops tabStops = null;
Roozbeh Pournader112d9c72015-08-07 12:44:41 -07001391 if (hasTabs && mText instanceof Spanned) {
Doug Feltc982f602010-05-25 11:51:40 -07001392 // Just checking this line should be good enough, tabs should be
1393 // consistent across all lines in a paragraph.
Eric Fischer74d31ef2010-08-05 15:29:36 -07001394 TabStopSpan[] tabs = getParagraphSpans((Spanned) mText, start, end, TabStopSpan.class);
Doug Feltc982f602010-05-25 11:51:40 -07001395 if (tabs.length > 0) {
1396 tabStops = new TabStops(TAB_INCREMENT, tabs); // XXX should reuse
1397 }
1398 }
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001399 final Directions directions = getLineDirections(line);
Fabrice Di Meglio8059e0902011-08-10 16:31:58 -07001400 // Returned directions can actually be null
1401 if (directions == null) {
1402 return 0f;
1403 }
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001404 final int dir = getParagraphDirection(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001405
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001406 final TextLine tl = TextLine.obtain();
1407 final TextPaint paint = mWorkPaint;
1408 paint.set(mPaint);
1409 paint.setHyphenEdit(getHyphen(line));
Mihai Popace642dc2018-05-24 14:25:11 +01001410 tl.set(paint, mText, start, end, dir, directions, hasTabs, tabStops,
1411 getEllipsisStart(line), getEllipsisStart(line) + getEllipsisCount(line));
Seigo Nonaka09da71a2016-11-28 16:24:14 +09001412 if (isJustificationRequired(line)) {
1413 tl.justify(getJustifyWidth(line));
1414 }
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001415 final float width = tl.metrics(null);
Doug Feltc982f602010-05-25 11:51:40 -07001416 TextLine.recycle(tl);
1417 return width;
1418 }
1419
1420 /**
1421 * Returns the signed horizontal extent of the specified line, excluding
1422 * leading margin. If full is false, excludes trailing whitespace.
1423 * @param line the index of the line
1424 * @param tabStops the tab stops, can be null if we know they're not used.
1425 * @param full whether to include trailing whitespace
1426 * @return the extent of the text on this line
1427 */
1428 private float getLineExtent(int line, TabStops tabStops, boolean full) {
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001429 final int start = getLineStart(line);
1430 final int end = full ? getLineEnd(line) : getLineVisibleEnd(line);
1431 final boolean hasTabs = getLineContainsTab(line);
1432 final Directions directions = getLineDirections(line);
1433 final int dir = getParagraphDirection(line);
Doug Feltc982f602010-05-25 11:51:40 -07001434
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001435 final TextLine tl = TextLine.obtain();
1436 final TextPaint paint = mWorkPaint;
1437 paint.set(mPaint);
1438 paint.setHyphenEdit(getHyphen(line));
Mihai Popace642dc2018-05-24 14:25:11 +01001439 tl.set(paint, mText, start, end, dir, directions, hasTabs, tabStops,
1440 getEllipsisStart(line), getEllipsisStart(line) + getEllipsisCount(line));
Seigo Nonaka09da71a2016-11-28 16:24:14 +09001441 if (isJustificationRequired(line)) {
1442 tl.justify(getJustifyWidth(line));
1443 }
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001444 final float width = tl.metrics(null);
Doug Felte8e45f22010-03-29 14:58:40 -07001445 TextLine.recycle(tl);
1446 return width;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001447 }
1448
1449 /**
1450 * Get the line number corresponding to the specified vertical position.
1451 * If you ask for a position above 0, you get 0; if you ask for a position
1452 * below the bottom of the text, you get the last line.
1453 */
1454 // FIXME: It may be faster to do a linear search for layouts without many lines.
1455 public int getLineForVertical(int vertical) {
1456 int high = getLineCount(), low = -1, guess;
1457
1458 while (high - low > 1) {
1459 guess = (high + low) / 2;
1460
1461 if (getLineTop(guess) > vertical)
1462 high = guess;
1463 else
1464 low = guess;
1465 }
1466
1467 if (low < 0)
1468 return 0;
1469 else
1470 return low;
1471 }
1472
1473 /**
1474 * Get the line number on which the specified text offset appears.
1475 * If you ask for a position before 0, you get 0; if you ask for a position
1476 * beyond the end of the text, you get the last line.
1477 */
1478 public int getLineForOffset(int offset) {
1479 int high = getLineCount(), low = -1, guess;
1480
1481 while (high - low > 1) {
1482 guess = (high + low) / 2;
1483
1484 if (getLineStart(guess) > offset)
1485 high = guess;
1486 else
1487 low = guess;
1488 }
1489
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001490 if (low < 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001491 return 0;
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001492 } else {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001493 return low;
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001494 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001495 }
1496
1497 /**
Doug Felt9f7a4442010-03-01 12:45:56 -08001498 * Get the character offset on the specified line whose position is
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001499 * closest to the specified horizontal position.
1500 */
1501 public int getOffsetForHorizontal(int line, float horiz) {
Keisuke Kuroyanagif0bb87b72016-02-08 23:52:55 +09001502 return getOffsetForHorizontal(line, horiz, true);
1503 }
1504
1505 /**
1506 * Get the character offset on the specified line whose position is
1507 * closest to the specified horizontal position.
1508 *
1509 * @param line the line used to find the closest offset
1510 * @param horiz the horizontal position used to find the closest offset
1511 * @param primary whether to use the primary position or secondary position to find the offset
1512 *
1513 * @hide
1514 */
1515 public int getOffsetForHorizontal(int line, float horiz, boolean primary) {
Raph Levienedb27f12015-06-01 14:34:47 -07001516 // TODO: use Paint.getOffsetForAdvance to avoid binary search
Keisuke Kuroyanagi00ad16d2015-08-27 18:15:48 +09001517 final int lineEndOffset = getLineEnd(line);
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001518 final int lineStartOffset = getLineStart(line);
1519
1520 Directions dirs = getLineDirections(line);
1521
1522 TextLine tl = TextLine.obtain();
1523 // XXX: we don't care about tabs as we just use TextLine#getOffsetToLeftRightOf here.
1524 tl.set(mPaint, mText, lineStartOffset, lineEndOffset, getParagraphDirection(line), dirs,
Mihai Popace642dc2018-05-24 14:25:11 +01001525 false, null,
1526 getEllipsisStart(line), getEllipsisStart(line) + getEllipsisCount(line));
Mihai Popa7626c862018-05-09 17:31:48 +01001527 final HorizontalMeasurementProvider horizontal =
1528 new HorizontalMeasurementProvider(line, primary);
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001529
Keisuke Kuroyanagi00ad16d2015-08-27 18:15:48 +09001530 final int max;
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001531 if (line == getLineCount() - 1) {
1532 max = lineEndOffset;
1533 } else {
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001534 max = tl.getOffsetToLeftRightOf(lineEndOffset - lineStartOffset,
1535 !isRtlCharAt(lineEndOffset - 1)) + lineStartOffset;
Keisuke Kuroyanagi00ad16d2015-08-27 18:15:48 +09001536 }
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001537 int best = lineStartOffset;
Mihai Popa7626c862018-05-09 17:31:48 +01001538 float bestdist = Math.abs(horizontal.get(lineStartOffset) - horiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001539
Doug Felt9f7a4442010-03-01 12:45:56 -08001540 for (int i = 0; i < dirs.mDirections.length; i += 2) {
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001541 int here = lineStartOffset + dirs.mDirections[i];
Doug Felt9f7a4442010-03-01 12:45:56 -08001542 int there = here + (dirs.mDirections[i+1] & RUN_LENGTH_MASK);
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001543 boolean isRtl = (dirs.mDirections[i+1] & RUN_RTL_FLAG) != 0;
1544 int swap = isRtl ? -1 : 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001545
1546 if (there > max)
1547 there = max;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001548 int high = there - 1 + 1, low = here + 1 - 1, guess;
1549
1550 while (high - low > 1) {
1551 guess = (high + low) / 2;
1552 int adguess = getOffsetAtStartOf(guess);
1553
Mihai Popa7626c862018-05-09 17:31:48 +01001554 if (horizontal.get(adguess) * swap >= horiz * swap) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001555 high = guess;
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001556 } else {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557 low = guess;
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001558 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001559 }
1560
1561 if (low < here + 1)
1562 low = here + 1;
1563
1564 if (low < there) {
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001565 int aft = tl.getOffsetToLeftRightOf(low - lineStartOffset, isRtl) + lineStartOffset;
1566 low = tl.getOffsetToLeftRightOf(aft - lineStartOffset, !isRtl) + lineStartOffset;
1567 if (low >= here && low < there) {
Mihai Popa7626c862018-05-09 17:31:48 +01001568 float dist = Math.abs(horizontal.get(low) - horiz);
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001569 if (aft < there) {
Mihai Popa7626c862018-05-09 17:31:48 +01001570 float other = Math.abs(horizontal.get(aft) - horiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001571
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001572 if (other < dist) {
1573 dist = other;
1574 low = aft;
1575 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001576 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001577
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001578 if (dist < bestdist) {
1579 bestdist = dist;
1580 best = low;
1581 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001582 }
1583 }
1584
Mihai Popa7626c862018-05-09 17:31:48 +01001585 float dist = Math.abs(horizontal.get(here) - horiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001586
1587 if (dist < bestdist) {
1588 bestdist = dist;
1589 best = here;
1590 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001591 }
1592
Mihai Popa7626c862018-05-09 17:31:48 +01001593 float dist = Math.abs(horizontal.get(max) - horiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001594
Raph Levien373b7a82013-09-20 15:11:52 -07001595 if (dist <= bestdist) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001596 best = max;
1597 }
1598
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001599 TextLine.recycle(tl);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001600 return best;
1601 }
1602
1603 /**
Mihai Popa7626c862018-05-09 17:31:48 +01001604 * Responds to #getHorizontal queries, by selecting the better strategy between:
1605 * - calling #getHorizontal explicitly for each query
1606 * - precomputing all #getHorizontal measurements, and responding to any query in constant time
1607 * The first strategy is used for LTR-only text, while the second is used for all other cases.
1608 * The class is currently only used in #getOffsetForHorizontal, so reuse with care in other
1609 * contexts.
1610 */
1611 private class HorizontalMeasurementProvider {
1612 private final int mLine;
1613 private final boolean mPrimary;
1614
1615 private float[] mHorizontals;
1616 private int mLineStartOffset;
1617
1618 HorizontalMeasurementProvider(final int line, final boolean primary) {
1619 mLine = line;
1620 mPrimary = primary;
1621 init();
1622 }
1623
1624 private void init() {
1625 final Directions dirs = getLineDirections(mLine);
1626 if (dirs == DIRS_ALL_LEFT_TO_RIGHT) {
1627 return;
1628 }
1629
1630 mHorizontals = getLineHorizontals(mLine, false, mPrimary);
1631 mLineStartOffset = getLineStart(mLine);
1632 }
1633
1634 float get(final int offset) {
Siyamed Sinir58df7952018-08-14 18:43:56 -07001635 final int index = offset - mLineStartOffset;
1636 if (mHorizontals == null || index < 0 || index >= mHorizontals.length) {
Mihai Popa7626c862018-05-09 17:31:48 +01001637 return getHorizontal(offset, mPrimary);
1638 } else {
Siyamed Sinir58df7952018-08-14 18:43:56 -07001639 return mHorizontals[index];
Mihai Popa7626c862018-05-09 17:31:48 +01001640 }
1641 }
1642 }
1643
1644 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001645 * Return the text offset after the last character on the specified line.
1646 */
1647 public final int getLineEnd(int line) {
1648 return getLineStart(line + 1);
1649 }
1650
Doug Felt9f7a4442010-03-01 12:45:56 -08001651 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001652 * Return the text offset after the last visible character (so whitespace
1653 * is not counted) on the specified line.
1654 */
1655 public int getLineVisibleEnd(int line) {
1656 return getLineVisibleEnd(line, getLineStart(line), getLineStart(line+1));
1657 }
Doug Felt9f7a4442010-03-01 12:45:56 -08001658
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001659 private int getLineVisibleEnd(int line, int start, int end) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001660 CharSequence text = mText;
1661 char ch;
1662 if (line == getLineCount() - 1) {
1663 return end;
1664 }
1665
1666 for (; end > start; end--) {
1667 ch = text.charAt(end - 1);
1668
1669 if (ch == '\n') {
1670 return end - 1;
1671 }
1672
Seigo Nonaka09da71a2016-11-28 16:24:14 +09001673 if (!TextLine.isLineEndSpace(ch)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001674 break;
1675 }
1676
1677 }
1678
1679 return end;
1680 }
1681
1682 /**
1683 * Return the vertical position of the bottom of the specified line.
1684 */
1685 public final int getLineBottom(int line) {
1686 return getLineTop(line + 1);
1687 }
1688
1689 /**
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001690 * Return the vertical position of the bottom of the specified line without the line spacing
1691 * added.
1692 *
1693 * @hide
1694 */
1695 public final int getLineBottomWithoutSpacing(int line) {
1696 return getLineTop(line + 1) - getLineExtra(line);
1697 }
1698
1699 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001700 * Return the vertical position of the baseline of the specified line.
1701 */
1702 public final int getLineBaseline(int line) {
Haoyu Zhang7425d982018-10-12 10:28:40 -07001703 // getLineTop(line+1) == getLineBottom(line)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001704 return getLineTop(line+1) - getLineDescent(line);
1705 }
1706
1707 /**
1708 * Get the ascent of the text on the specified line.
1709 * The return value is negative to match the Paint.ascent() convention.
1710 */
1711 public final int getLineAscent(int line) {
1712 // getLineTop(line+1) - getLineDescent(line) == getLineBaseLine(line)
1713 return getLineTop(line) - (getLineTop(line+1) - getLineDescent(line));
1714 }
1715
Siyamed Sinir0fa89d62017-07-24 20:46:41 -07001716 /**
1717 * Return the extra space added as a result of line spacing attributes
1718 * {@link #getSpacingAdd()} and {@link #getSpacingMultiplier()}. Default value is {@code zero}.
1719 *
1720 * @param line the index of the line, the value should be equal or greater than {@code zero}
1721 * @hide
1722 */
1723 public int getLineExtra(@IntRange(from = 0) int line) {
1724 return 0;
1725 }
1726
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001727 public int getOffsetToLeftOf(int offset) {
Doug Felt9f7a4442010-03-01 12:45:56 -08001728 return getOffsetToLeftRightOf(offset, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001729 }
1730
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001731 public int getOffsetToRightOf(int offset) {
Doug Felt9f7a4442010-03-01 12:45:56 -08001732 return getOffsetToLeftRightOf(offset, false);
1733 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001734
Doug Felt9f7a4442010-03-01 12:45:56 -08001735 private int getOffsetToLeftRightOf(int caret, boolean toLeft) {
1736 int line = getLineForOffset(caret);
1737 int lineStart = getLineStart(line);
1738 int lineEnd = getLineEnd(line);
Doug Felte8e45f22010-03-29 14:58:40 -07001739 int lineDir = getParagraphDirection(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001740
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001741 boolean lineChanged = false;
Doug Felte8e45f22010-03-29 14:58:40 -07001742 boolean advance = toLeft == (lineDir == DIR_RIGHT_TO_LEFT);
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001743 // if walking off line, look at the line we're headed to
1744 if (advance) {
1745 if (caret == lineEnd) {
Doug Felte8e45f22010-03-29 14:58:40 -07001746 if (line < getLineCount() - 1) {
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001747 lineChanged = true;
Doug Felte8e45f22010-03-29 14:58:40 -07001748 ++line;
1749 } else {
1750 return caret; // at very end, don't move
1751 }
Doug Felt9f7a4442010-03-01 12:45:56 -08001752 }
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001753 } else {
1754 if (caret == lineStart) {
1755 if (line > 0) {
1756 lineChanged = true;
1757 --line;
1758 } else {
1759 return caret; // at very start, don't move
1760 }
1761 }
1762 }
Doug Felt9f7a4442010-03-01 12:45:56 -08001763
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001764 if (lineChanged) {
Doug Felte8e45f22010-03-29 14:58:40 -07001765 lineStart = getLineStart(line);
1766 lineEnd = getLineEnd(line);
1767 int newDir = getParagraphDirection(line);
1768 if (newDir != lineDir) {
1769 // unusual case. we want to walk onto the line, but it runs
1770 // in a different direction than this one, so we fake movement
1771 // in the opposite direction.
1772 toLeft = !toLeft;
1773 lineDir = newDir;
1774 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001775 }
Doug Felt9f7a4442010-03-01 12:45:56 -08001776
Doug Felte8e45f22010-03-29 14:58:40 -07001777 Directions directions = getLineDirections(line);
Doug Felt9f7a4442010-03-01 12:45:56 -08001778
Doug Felte8e45f22010-03-29 14:58:40 -07001779 TextLine tl = TextLine.obtain();
1780 // XXX: we don't care about tabs
Mihai Popace642dc2018-05-24 14:25:11 +01001781 tl.set(mPaint, mText, lineStart, lineEnd, lineDir, directions, false, null,
1782 getEllipsisStart(line), getEllipsisStart(line) + getEllipsisCount(line));
Doug Felte8e45f22010-03-29 14:58:40 -07001783 caret = lineStart + tl.getOffsetToLeftRightOf(caret - lineStart, toLeft);
Siyamed Sinira273a702017-10-05 11:22:12 -07001784 TextLine.recycle(tl);
Doug Felte8e45f22010-03-29 14:58:40 -07001785 return caret;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001786 }
1787
1788 private int getOffsetAtStartOf(int offset) {
Doug Felt9f7a4442010-03-01 12:45:56 -08001789 // XXX this probably should skip local reorderings and
1790 // zero-width characters, look at callers
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001791 if (offset == 0)
1792 return 0;
1793
1794 CharSequence text = mText;
1795 char c = text.charAt(offset);
1796
1797 if (c >= '\uDC00' && c <= '\uDFFF') {
1798 char c1 = text.charAt(offset - 1);
1799
1800 if (c1 >= '\uD800' && c1 <= '\uDBFF')
1801 offset -= 1;
1802 }
1803
1804 if (mSpannedText) {
1805 ReplacementSpan[] spans = ((Spanned) text).getSpans(offset, offset,
1806 ReplacementSpan.class);
1807
1808 for (int i = 0; i < spans.length; i++) {
1809 int start = ((Spanned) text).getSpanStart(spans[i]);
1810 int end = ((Spanned) text).getSpanEnd(spans[i]);
1811
1812 if (start < offset && end > offset)
1813 offset = start;
1814 }
1815 }
1816
1817 return offset;
1818 }
1819
1820 /**
Raph Levienafe8e9b2012-12-19 16:09:32 -08001821 * Determine whether we should clamp cursor position. Currently it's
1822 * only robust for left-aligned displays.
1823 * @hide
1824 */
Mathew Inwoodefeab842018-08-14 15:21:30 +01001825 @UnsupportedAppUsage
Raph Levienafe8e9b2012-12-19 16:09:32 -08001826 public boolean shouldClampCursor(int line) {
1827 // Only clamp cursor position in left-aligned displays.
1828 switch (getParagraphAlignment(line)) {
1829 case ALIGN_LEFT:
1830 return true;
1831 case ALIGN_NORMAL:
1832 return getParagraphDirection(line) > 0;
1833 default:
1834 return false;
1835 }
1836
1837 }
1838 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001839 * Fills in the specified Path with a representation of a cursor
1840 * at the specified offset. This will often be a vertical line
Doug Felt4e0c5e52010-03-15 16:56:02 -07001841 * but can be multiple discontinuous lines in text with multiple
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001842 * directionalities.
1843 */
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001844 public void getCursorPath(final int point, final Path dest, final CharSequence editingBuffer) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001845 dest.reset();
1846
1847 int line = getLineForOffset(point);
1848 int top = getLineTop(line);
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001849 int bottom = getLineBottomWithoutSpacing(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001850
Raph Levienafe8e9b2012-12-19 16:09:32 -08001851 boolean clamped = shouldClampCursor(line);
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001852 float h1 = getPrimaryHorizontal(point, clamped) - 0.5f;
1853 float h2 = isLevelBoundary(point) ? getSecondaryHorizontal(point, clamped) - 0.5f : h1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001854
Jeff Brown497a92c2010-09-12 17:55:08 -07001855 int caps = TextKeyListener.getMetaState(editingBuffer, TextKeyListener.META_SHIFT_ON) |
1856 TextKeyListener.getMetaState(editingBuffer, TextKeyListener.META_SELECTING);
1857 int fn = TextKeyListener.getMetaState(editingBuffer, TextKeyListener.META_ALT_ON);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001858 int dist = 0;
1859
1860 if (caps != 0 || fn != 0) {
1861 dist = (bottom - top) >> 2;
1862
1863 if (fn != 0)
1864 top += dist;
1865 if (caps != 0)
1866 bottom -= dist;
1867 }
1868
1869 if (h1 < 0.5f)
1870 h1 = 0.5f;
1871 if (h2 < 0.5f)
1872 h2 = 0.5f;
1873
Jozef BABJAK2fb503f2011-03-17 09:54:51 +01001874 if (Float.compare(h1, h2) == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001875 dest.moveTo(h1, top);
1876 dest.lineTo(h1, bottom);
1877 } else {
1878 dest.moveTo(h1, top);
1879 dest.lineTo(h1, (top + bottom) >> 1);
1880
1881 dest.moveTo(h2, (top + bottom) >> 1);
1882 dest.lineTo(h2, bottom);
1883 }
1884
1885 if (caps == 2) {
1886 dest.moveTo(h2, bottom);
1887 dest.lineTo(h2 - dist, bottom + dist);
1888 dest.lineTo(h2, bottom);
1889 dest.lineTo(h2 + dist, bottom + dist);
1890 } else if (caps == 1) {
1891 dest.moveTo(h2, bottom);
1892 dest.lineTo(h2 - dist, bottom + dist);
1893
1894 dest.moveTo(h2 - dist, bottom + dist - 0.5f);
1895 dest.lineTo(h2 + dist, bottom + dist - 0.5f);
1896
1897 dest.moveTo(h2 + dist, bottom + dist);
1898 dest.lineTo(h2, bottom);
1899 }
1900
1901 if (fn == 2) {
1902 dest.moveTo(h1, top);
1903 dest.lineTo(h1 - dist, top - dist);
1904 dest.lineTo(h1, top);
1905 dest.lineTo(h1 + dist, top - dist);
1906 } else if (fn == 1) {
1907 dest.moveTo(h1, top);
1908 dest.lineTo(h1 - dist, top - dist);
1909
1910 dest.moveTo(h1 - dist, top - dist + 0.5f);
1911 dest.lineTo(h1 + dist, top - dist + 0.5f);
1912
1913 dest.moveTo(h1 + dist, top - dist);
1914 dest.lineTo(h1, top);
1915 }
1916 }
1917
1918 private void addSelection(int line, int start, int end,
Petar Šeginab92c5392017-09-06 15:25:05 +01001919 int top, int bottom, SelectionRectangleConsumer consumer) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001920 int linestart = getLineStart(line);
1921 int lineend = getLineEnd(line);
1922 Directions dirs = getLineDirections(line);
1923
Petar Šeginafb748b32017-08-07 12:37:52 +01001924 if (lineend > linestart && mText.charAt(lineend - 1) == '\n') {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001925 lineend--;
Petar Šeginafb748b32017-08-07 12:37:52 +01001926 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001927
Doug Felt9f7a4442010-03-01 12:45:56 -08001928 for (int i = 0; i < dirs.mDirections.length; i += 2) {
1929 int here = linestart + dirs.mDirections[i];
Petar Šeginafb748b32017-08-07 12:37:52 +01001930 int there = here + (dirs.mDirections[i + 1] & RUN_LENGTH_MASK);
Doug Felt9f7a4442010-03-01 12:45:56 -08001931
Petar Šeginafb748b32017-08-07 12:37:52 +01001932 if (there > lineend) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001933 there = lineend;
Petar Šeginafb748b32017-08-07 12:37:52 +01001934 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001935
1936 if (start <= there && end >= here) {
1937 int st = Math.max(start, here);
1938 int en = Math.min(end, there);
1939
1940 if (st != en) {
Raph Levienafe8e9b2012-12-19 16:09:32 -08001941 float h1 = getHorizontal(st, false, line, false /* not clamped */);
1942 float h2 = getHorizontal(en, true, line, false /* not clamped */);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001943
Fabrice Di Meglio37166012011-08-31 13:56:37 -07001944 float left = Math.min(h1, h2);
1945 float right = Math.max(h1, h2);
1946
Petar Šegina8f1f74e2017-09-07 14:26:28 +01001947 final @TextSelectionLayout int layout =
1948 ((dirs.mDirections[i + 1] & RUN_RTL_FLAG) != 0)
1949 ? TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT
1950 : TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT;
1951
1952 consumer.accept(left, top, right, bottom, layout);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001953 }
1954 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001955 }
1956 }
1957
1958 /**
1959 * Fills in the specified Path with a representation of a highlight
1960 * between the specified offsets. This will often be a rectangle
1961 * or a potentially discontinuous set of rectangles. If the start
1962 * and end are the same, the returned path is empty.
1963 */
1964 public void getSelectionPath(int start, int end, Path dest) {
1965 dest.reset();
Petar Šeginab92c5392017-09-06 15:25:05 +01001966 getSelection(start, end, (left, top, right, bottom, textSelectionLayout) ->
Petar Šeginafb748b32017-08-07 12:37:52 +01001967 dest.addRect(left, top, right, bottom, Path.Direction.CW));
1968 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001969
Petar Šeginafb748b32017-08-07 12:37:52 +01001970 /**
1971 * Calculates the rectangles which should be highlighted to indicate a selection between start
Petar Šeginab92c5392017-09-06 15:25:05 +01001972 * and end and feeds them into the given {@link SelectionRectangleConsumer}.
Petar Šeginafb748b32017-08-07 12:37:52 +01001973 *
1974 * @param start the starting index of the selection
1975 * @param end the ending index of the selection
Petar Šeginab92c5392017-09-06 15:25:05 +01001976 * @param consumer the {@link SelectionRectangleConsumer} which will receive the generated
1977 * rectangles. It will be called every time a rectangle is generated.
Petar Šeginafb748b32017-08-07 12:37:52 +01001978 * @hide
1979 * @see #getSelectionPath(int, int, Path)
1980 */
Petar Šeginab92c5392017-09-06 15:25:05 +01001981 public final void getSelection(int start, int end, final SelectionRectangleConsumer consumer) {
Petar Šeginafb748b32017-08-07 12:37:52 +01001982 if (start == end) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001983 return;
Petar Šeginafb748b32017-08-07 12:37:52 +01001984 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001985
1986 if (end < start) {
1987 int temp = end;
1988 end = start;
1989 start = temp;
1990 }
1991
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001992 final int startline = getLineForOffset(start);
1993 final int endline = getLineForOffset(end);
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001994
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001995 int top = getLineTop(startline);
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001996 int bottom = getLineBottomWithoutSpacing(endline);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001997
1998 if (startline == endline) {
Petar Šeginafb748b32017-08-07 12:37:52 +01001999 addSelection(startline, start, end, top, bottom, consumer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002000 } else {
2001 final float width = mWidth;
2002
2003 addSelection(startline, start, getLineEnd(startline),
Petar Šeginafb748b32017-08-07 12:37:52 +01002004 top, getLineBottom(startline), consumer);
Doug Felt9f7a4442010-03-01 12:45:56 -08002005
Petar Šeginafb748b32017-08-07 12:37:52 +01002006 if (getParagraphDirection(startline) == DIR_RIGHT_TO_LEFT) {
Petar Šeginab92c5392017-09-06 15:25:05 +01002007 consumer.accept(getLineLeft(startline), top, 0, getLineBottom(startline),
Petar Šegina3a92fb62017-09-07 21:03:24 +01002008 TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT);
Petar Šeginafb748b32017-08-07 12:37:52 +01002009 } else {
Petar Šeginab92c5392017-09-06 15:25:05 +01002010 consumer.accept(getLineRight(startline), top, width, getLineBottom(startline),
Petar Šegina3a92fb62017-09-07 21:03:24 +01002011 TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT);
Petar Šeginafb748b32017-08-07 12:37:52 +01002012 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002013
2014 for (int i = startline + 1; i < endline; i++) {
2015 top = getLineTop(i);
2016 bottom = getLineBottom(i);
Petar Šeginab92c5392017-09-06 15:25:05 +01002017 if (getParagraphDirection(i) == DIR_RIGHT_TO_LEFT) {
Petar Šegina3a92fb62017-09-07 21:03:24 +01002018 consumer.accept(0, top, width, bottom, TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT);
Petar Šeginab92c5392017-09-06 15:25:05 +01002019 } else {
Petar Šegina3a92fb62017-09-07 21:03:24 +01002020 consumer.accept(0, top, width, bottom, TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT);
Petar Šeginab92c5392017-09-06 15:25:05 +01002021 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002022 }
2023
2024 top = getLineTop(endline);
Siyamed Sinira60b59d2017-07-26 09:26:41 -07002025 bottom = getLineBottomWithoutSpacing(endline);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002026
Petar Šeginafb748b32017-08-07 12:37:52 +01002027 addSelection(endline, getLineStart(endline), end, top, bottom, consumer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002028
Petar Šeginafb748b32017-08-07 12:37:52 +01002029 if (getParagraphDirection(endline) == DIR_RIGHT_TO_LEFT) {
Petar Šeginab92c5392017-09-06 15:25:05 +01002030 consumer.accept(width, top, getLineRight(endline), bottom,
Petar Šegina3a92fb62017-09-07 21:03:24 +01002031 TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT);
Petar Šeginafb748b32017-08-07 12:37:52 +01002032 } else {
Petar Šeginab92c5392017-09-06 15:25:05 +01002033 consumer.accept(0, top, getLineLeft(endline), bottom,
Petar Šegina3a92fb62017-09-07 21:03:24 +01002034 TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT);
Petar Šeginafb748b32017-08-07 12:37:52 +01002035 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002036 }
2037 }
2038
2039 /**
2040 * Get the alignment of the specified paragraph, taking into account
2041 * markup attached to it.
2042 */
2043 public final Alignment getParagraphAlignment(int line) {
2044 Alignment align = mAlignment;
2045
2046 if (mSpannedText) {
2047 Spanned sp = (Spanned) mText;
Eric Fischer74d31ef2010-08-05 15:29:36 -07002048 AlignmentSpan[] spans = getParagraphSpans(sp, getLineStart(line),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002049 getLineEnd(line),
2050 AlignmentSpan.class);
2051
2052 int spanLength = spans.length;
2053 if (spanLength > 0) {
2054 align = spans[spanLength-1].getAlignment();
2055 }
2056 }
2057
2058 return align;
2059 }
2060
2061 /**
2062 * Get the left edge of the specified paragraph, inset by left margins.
2063 */
2064 public final int getParagraphLeft(int line) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002065 int left = 0;
Doug Feltc982f602010-05-25 11:51:40 -07002066 int dir = getParagraphDirection(line);
2067 if (dir == DIR_RIGHT_TO_LEFT || !mSpannedText) {
2068 return left; // leading margin has no impact, or no styles
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002069 }
Doug Feltc982f602010-05-25 11:51:40 -07002070 return getParagraphLeadingMargin(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002071 }
2072
2073 /**
2074 * Get the right edge of the specified paragraph, inset by right margins.
2075 */
2076 public final int getParagraphRight(int line) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002077 int right = mWidth;
Doug Feltc982f602010-05-25 11:51:40 -07002078 int dir = getParagraphDirection(line);
2079 if (dir == DIR_LEFT_TO_RIGHT || !mSpannedText) {
2080 return right; // leading margin has no impact, or no styles
2081 }
2082 return right - getParagraphLeadingMargin(line);
2083 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002084
Doug Feltc982f602010-05-25 11:51:40 -07002085 /**
2086 * Returns the effective leading margin (unsigned) for this line,
2087 * taking into account LeadingMarginSpan and LeadingMarginSpan2.
2088 * @param line the line index
2089 * @return the leading margin of this line
2090 */
2091 private int getParagraphLeadingMargin(int line) {
2092 if (!mSpannedText) {
2093 return 0;
2094 }
2095 Spanned spanned = (Spanned) mText;
Doug Felt0c702b82010-05-14 10:55:42 -07002096
Doug Feltc982f602010-05-25 11:51:40 -07002097 int lineStart = getLineStart(line);
2098 int lineEnd = getLineEnd(line);
Doug Felt0c702b82010-05-14 10:55:42 -07002099 int spanEnd = spanned.nextSpanTransition(lineStart, lineEnd,
Doug Feltc982f602010-05-25 11:51:40 -07002100 LeadingMarginSpan.class);
Eric Fischer74d31ef2010-08-05 15:29:36 -07002101 LeadingMarginSpan[] spans = getParagraphSpans(spanned, lineStart, spanEnd,
Doug Feltc982f602010-05-25 11:51:40 -07002102 LeadingMarginSpan.class);
2103 if (spans.length == 0) {
2104 return 0; // no leading margin span;
2105 }
Doug Felt0c702b82010-05-14 10:55:42 -07002106
Doug Feltc982f602010-05-25 11:51:40 -07002107 int margin = 0;
Doug Felt0c702b82010-05-14 10:55:42 -07002108
Siyamed Sinira273a702017-10-05 11:22:12 -07002109 boolean useFirstLineMargin = lineStart == 0 || spanned.charAt(lineStart - 1) == '\n';
Anish Athalyeab08c6d2014-08-08 12:09:58 -07002110 for (int i = 0; i < spans.length; i++) {
2111 if (spans[i] instanceof LeadingMarginSpan2) {
2112 int spStart = spanned.getSpanStart(spans[i]);
2113 int spanLine = getLineForOffset(spStart);
2114 int count = ((LeadingMarginSpan2) spans[i]).getLeadingMarginLineCount();
2115 // if there is more than one LeadingMarginSpan2, use the count that is greatest
2116 useFirstLineMargin |= line < spanLine + count;
2117 }
2118 }
Doug Feltc982f602010-05-25 11:51:40 -07002119 for (int i = 0; i < spans.length; i++) {
2120 LeadingMarginSpan span = spans[i];
Doug Feltc982f602010-05-25 11:51:40 -07002121 margin += span.getLeadingMargin(useFirstLineMargin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002122 }
2123
Doug Feltc982f602010-05-25 11:51:40 -07002124 return margin;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002125 }
2126
Roozbeh Pournader9a9179d2017-08-29 14:14:28 -07002127 private static float measurePara(TextPaint paint, CharSequence text, int start, int end,
Siyamed Sinir79bf9d12016-05-18 19:57:52 -07002128 TextDirectionHeuristic textDir) {
Seigo Nonaka9d3bd082018-01-11 10:02:12 -08002129 MeasuredParagraph mt = null;
Doug Felte8e45f22010-03-29 14:58:40 -07002130 TextLine tl = TextLine.obtain();
2131 try {
Seigo Nonaka9d3bd082018-01-11 10:02:12 -08002132 mt = MeasuredParagraph.buildForBidi(text, start, end, textDir, mt);
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002133 final char[] chars = mt.getChars();
2134 final int len = chars.length;
2135 final Directions directions = mt.getDirections(0, len);
2136 final int dir = mt.getParagraphDir();
Doug Feltc982f602010-05-25 11:51:40 -07002137 boolean hasTabs = false;
2138 TabStops tabStops = null;
Anish Athalyec14b3ad2014-07-24 18:03:21 -07002139 // leading margins should be taken into account when measuring a paragraph
2140 int margin = 0;
2141 if (text instanceof Spanned) {
2142 Spanned spanned = (Spanned) text;
2143 LeadingMarginSpan[] spans = getParagraphSpans(spanned, start, end,
2144 LeadingMarginSpan.class);
2145 for (LeadingMarginSpan lms : spans) {
2146 margin += lms.getLeadingMargin(true);
2147 }
2148 }
Doug Feltc982f602010-05-25 11:51:40 -07002149 for (int i = 0; i < len; ++i) {
2150 if (chars[i] == '\t') {
2151 hasTabs = true;
2152 if (text instanceof Spanned) {
2153 Spanned spanned = (Spanned) text;
Doug Felt0c702b82010-05-14 10:55:42 -07002154 int spanEnd = spanned.nextSpanTransition(start, end,
Doug Feltc982f602010-05-25 11:51:40 -07002155 TabStopSpan.class);
Eric Fischer74d31ef2010-08-05 15:29:36 -07002156 TabStopSpan[] spans = getParagraphSpans(spanned, start, spanEnd,
Doug Feltc982f602010-05-25 11:51:40 -07002157 TabStopSpan.class);
2158 if (spans.length > 0) {
2159 tabStops = new TabStops(TAB_INCREMENT, spans);
2160 }
2161 }
2162 break;
2163 }
2164 }
Mihai Popace642dc2018-05-24 14:25:11 +01002165 tl.set(paint, text, start, end, dir, directions, hasTabs, tabStops,
2166 0 /* ellipsisStart */, 0 /* ellipsisEnd */);
Siyamed Sinir79bf9d12016-05-18 19:57:52 -07002167 return margin + Math.abs(tl.metrics(null));
Doug Felte8e45f22010-03-29 14:58:40 -07002168 } finally {
2169 TextLine.recycle(tl);
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002170 if (mt != null) {
2171 mt.recycle();
2172 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002173 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002174 }
2175
Doug Felt71b8dd72010-02-16 17:27:09 -08002176 /**
Doug Feltc982f602010-05-25 11:51:40 -07002177 * @hide
2178 */
Seigo Nonaka32afe262018-05-16 22:05:27 -07002179 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
2180 public static class TabStops {
Doug Feltc982f602010-05-25 11:51:40 -07002181 private int[] mStops;
2182 private int mNumStops;
2183 private int mIncrement;
Doug Felt0c702b82010-05-14 10:55:42 -07002184
Seigo Nonaka32afe262018-05-16 22:05:27 -07002185 public TabStops(int increment, Object[] spans) {
Doug Feltc982f602010-05-25 11:51:40 -07002186 reset(increment, spans);
2187 }
Doug Felt0c702b82010-05-14 10:55:42 -07002188
Doug Feltc982f602010-05-25 11:51:40 -07002189 void reset(int increment, Object[] spans) {
2190 this.mIncrement = increment;
2191
2192 int ns = 0;
2193 if (spans != null) {
2194 int[] stops = this.mStops;
2195 for (Object o : spans) {
2196 if (o instanceof TabStopSpan) {
2197 if (stops == null) {
2198 stops = new int[10];
2199 } else if (ns == stops.length) {
2200 int[] nstops = new int[ns * 2];
2201 for (int i = 0; i < ns; ++i) {
2202 nstops[i] = stops[i];
2203 }
2204 stops = nstops;
2205 }
2206 stops[ns++] = ((TabStopSpan) o).getTabStop();
2207 }
2208 }
2209 if (ns > 1) {
2210 Arrays.sort(stops, 0, ns);
2211 }
2212 if (stops != this.mStops) {
2213 this.mStops = stops;
2214 }
2215 }
2216 this.mNumStops = ns;
2217 }
Doug Felt0c702b82010-05-14 10:55:42 -07002218
Doug Feltc982f602010-05-25 11:51:40 -07002219 float nextTab(float h) {
2220 int ns = this.mNumStops;
2221 if (ns > 0) {
2222 int[] stops = this.mStops;
2223 for (int i = 0; i < ns; ++i) {
2224 int stop = stops[i];
2225 if (stop > h) {
2226 return stop;
2227 }
2228 }
2229 }
2230 return nextDefaultStop(h, mIncrement);
2231 }
2232
2233 public static float nextDefaultStop(float h, int inc) {
2234 return ((int) ((h + inc) / inc)) * inc;
2235 }
2236 }
Doug Felt0c702b82010-05-14 10:55:42 -07002237
Doug Feltc982f602010-05-25 11:51:40 -07002238 /**
Doug Felt71b8dd72010-02-16 17:27:09 -08002239 * Returns the position of the next tab stop after h on the line.
2240 *
2241 * @param text the text
2242 * @param start start of the line
2243 * @param end limit of the line
2244 * @param h the current horizontal offset
2245 * @param tabs the tabs, can be null. If it is null, any tabs in effect
2246 * on the line will be used. If there are no tabs, a default offset
2247 * will be used to compute the tab stop.
2248 * @return the offset of the next tab stop.
2249 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002250 /* package */ static float nextTab(CharSequence text, int start, int end,
2251 float h, Object[] tabs) {
2252 float nh = Float.MAX_VALUE;
2253 boolean alltabs = false;
2254
2255 if (text instanceof Spanned) {
2256 if (tabs == null) {
Eric Fischer74d31ef2010-08-05 15:29:36 -07002257 tabs = getParagraphSpans((Spanned) text, start, end, TabStopSpan.class);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002258 alltabs = true;
2259 }
2260
2261 for (int i = 0; i < tabs.length; i++) {
2262 if (!alltabs) {
2263 if (!(tabs[i] instanceof TabStopSpan))
2264 continue;
2265 }
2266
2267 int where = ((TabStopSpan) tabs[i]).getTabStop();
2268
2269 if (where < nh && where > h)
2270 nh = where;
2271 }
2272
2273 if (nh != Float.MAX_VALUE)
2274 return nh;
2275 }
2276
2277 return ((int) ((h + TAB_INCREMENT) / TAB_INCREMENT)) * TAB_INCREMENT;
2278 }
2279
2280 protected final boolean isSpanned() {
2281 return mSpannedText;
2282 }
2283
Eric Fischer74d31ef2010-08-05 15:29:36 -07002284 /**
2285 * Returns the same as <code>text.getSpans()</code>, except where
2286 * <code>start</code> and <code>end</code> are the same and are not
2287 * at the very beginning of the text, in which case an empty array
2288 * is returned instead.
2289 * <p>
2290 * This is needed because of the special case that <code>getSpans()</code>
2291 * on an empty range returns the spans adjacent to that range, which is
2292 * primarily for the sake of <code>TextWatchers</code> so they will get
2293 * notifications when text goes from empty to non-empty. But it also
2294 * has the unfortunate side effect that if the text ends with an empty
2295 * paragraph, that paragraph accidentally picks up the styles of the
2296 * preceding paragraph (even though those styles will not be picked up
2297 * by new text that is inserted into the empty paragraph).
2298 * <p>
2299 * The reason it just checks whether <code>start</code> and <code>end</code>
2300 * is the same is that the only time a line can contain 0 characters
2301 * is if it is the final paragraph of the Layout; otherwise any line will
2302 * contain at least one printing or newline character. The reason for the
2303 * additional check if <code>start</code> is greater than 0 is that
2304 * if the empty paragraph is the entire content of the buffer, paragraph
2305 * styles that are already applied to the buffer will apply to text that
2306 * is inserted into it.
2307 */
Gilles Debunneeca5b732012-04-25 18:48:42 -07002308 /* package */static <T> T[] getParagraphSpans(Spanned text, int start, int end, Class<T> type) {
Eric Fischer74d31ef2010-08-05 15:29:36 -07002309 if (start == end && start > 0) {
Gilles Debunne6c488de2012-03-01 16:20:35 -08002310 return ArrayUtils.emptyArray(type);
Eric Fischer74d31ef2010-08-05 15:29:36 -07002311 }
2312
Siyamed Sinirfa05ba02016-01-12 10:54:43 -08002313 if(text instanceof SpannableStringBuilder) {
2314 return ((SpannableStringBuilder) text).getSpans(start, end, type, false);
2315 } else {
2316 return text.getSpans(start, end, type);
2317 }
Eric Fischer74d31ef2010-08-05 15:29:36 -07002318 }
2319
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002320 private void ellipsize(int start, int end, int line,
Fabrice Di Meglio8d44fff2012-06-13 15:45:38 -07002321 char[] dest, int destoff, TextUtils.TruncateAt method) {
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002322 final int ellipsisCount = getEllipsisCount(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002323 if (ellipsisCount == 0) {
2324 return;
2325 }
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002326 final int ellipsisStart = getEllipsisStart(line);
2327 final int lineStart = getLineStart(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002328
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002329 final String ellipsisString = TextUtils.getEllipsisString(method);
2330 final int ellipsisStringLen = ellipsisString.length();
Roozbeh Pournader1051bbe2017-07-25 13:52:57 -07002331 // Use the ellipsis string only if there are that at least as many characters to replace.
2332 final boolean useEllipsisString = ellipsisCount >= ellipsisStringLen;
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002333 for (int i = 0; i < ellipsisCount; i++) {
2334 final char c;
Roozbeh Pournader1051bbe2017-07-25 13:52:57 -07002335 if (useEllipsisString && i < ellipsisStringLen) {
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002336 c = ellipsisString.charAt(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002337 } else {
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002338 c = TextUtils.ELLIPSIS_FILLER;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002339 }
2340
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002341 final int a = i + ellipsisStart + lineStart;
2342 if (start <= a && a < end) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002343 dest[destoff + a - start] = c;
2344 }
2345 }
2346 }
2347
2348 /**
2349 * Stores information about bidirectional (left-to-right or right-to-left)
Doug Felt9f7a4442010-03-01 12:45:56 -08002350 * text within the layout of a line.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002351 */
2352 public static class Directions {
Siyamed Sinired09ae12016-02-16 14:36:26 -08002353 /**
Petar Šegina7c31d5c2017-09-25 12:19:28 +01002354 * Directions represents directional runs within a line of text. Runs are pairs of ints
2355 * listed in visual order, starting from the leading margin. The first int of each pair is
2356 * the offset from the first character of the line to the start of the run. The second int
2357 * represents both the length and level of the run. The length is in the lower bits,
2358 * accessed by masking with RUN_LENGTH_MASK. The level is in the higher bits, accessed by
2359 * shifting by RUN_LEVEL_SHIFT and masking by RUN_LEVEL_MASK. To simply test for an RTL
2360 * direction, test the bit using RUN_RTL_FLAG, if set then the direction is rtl.
Siyamed Sinired09ae12016-02-16 14:36:26 -08002361 * @hide
2362 */
2363 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
2364 public int[] mDirections;
2365
2366 /**
2367 * @hide
2368 */
2369 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
2370 public Directions(int[] dirs) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002371 mDirections = dirs;
2372 }
2373 }
2374
2375 /**
2376 * Return the offset of the first character to be ellipsized away,
2377 * relative to the start of the line. (So 0 if the beginning of the
2378 * line is ellipsized, not getLineStart().)
2379 */
2380 public abstract int getEllipsisStart(int line);
Doug Felte8e45f22010-03-29 14:58:40 -07002381
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002382 /**
2383 * Returns the number of characters to be ellipsized away, or 0 if
2384 * no ellipsis is to take place.
2385 */
2386 public abstract int getEllipsisCount(int line);
2387
2388 /* package */ static class Ellipsizer implements CharSequence, GetChars {
2389 /* package */ CharSequence mText;
2390 /* package */ Layout mLayout;
2391 /* package */ int mWidth;
2392 /* package */ TextUtils.TruncateAt mMethod;
2393
2394 public Ellipsizer(CharSequence s) {
2395 mText = s;
2396 }
2397
2398 public char charAt(int off) {
2399 char[] buf = TextUtils.obtain(1);
2400 getChars(off, off + 1, buf, 0);
2401 char ret = buf[0];
2402
2403 TextUtils.recycle(buf);
2404 return ret;
2405 }
2406
2407 public void getChars(int start, int end, char[] dest, int destoff) {
2408 int line1 = mLayout.getLineForOffset(start);
2409 int line2 = mLayout.getLineForOffset(end);
2410
2411 TextUtils.getChars(mText, start, end, dest, destoff);
2412
2413 for (int i = line1; i <= line2; i++) {
Fabrice Di Meglio8d44fff2012-06-13 15:45:38 -07002414 mLayout.ellipsize(start, end, i, dest, destoff, mMethod);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002415 }
2416 }
2417
2418 public int length() {
2419 return mText.length();
2420 }
Doug Felt9f7a4442010-03-01 12:45:56 -08002421
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002422 public CharSequence subSequence(int start, int end) {
2423 char[] s = new char[end - start];
2424 getChars(start, end, s, 0);
2425 return new String(s);
2426 }
2427
Gilles Debunne162bf0f2010-11-16 16:23:53 -08002428 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002429 public String toString() {
2430 char[] s = new char[length()];
2431 getChars(0, length(), s, 0);
2432 return new String(s);
2433 }
2434
2435 }
2436
Gilles Debunne6c488de2012-03-01 16:20:35 -08002437 /* package */ static class SpannedEllipsizer extends Ellipsizer implements Spanned {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002438 private Spanned mSpanned;
2439
2440 public SpannedEllipsizer(CharSequence display) {
2441 super(display);
2442 mSpanned = (Spanned) display;
2443 }
2444
2445 public <T> T[] getSpans(int start, int end, Class<T> type) {
2446 return mSpanned.getSpans(start, end, type);
2447 }
2448
2449 public int getSpanStart(Object tag) {
2450 return mSpanned.getSpanStart(tag);
2451 }
2452
2453 public int getSpanEnd(Object tag) {
2454 return mSpanned.getSpanEnd(tag);
2455 }
2456
2457 public int getSpanFlags(Object tag) {
2458 return mSpanned.getSpanFlags(tag);
2459 }
2460
Gilles Debunne6c488de2012-03-01 16:20:35 -08002461 @SuppressWarnings("rawtypes")
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002462 public int nextSpanTransition(int start, int limit, Class type) {
2463 return mSpanned.nextSpanTransition(start, limit, type);
2464 }
2465
Gilles Debunne162bf0f2010-11-16 16:23:53 -08002466 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002467 public CharSequence subSequence(int start, int end) {
2468 char[] s = new char[end - start];
2469 getChars(start, end, s, 0);
2470
2471 SpannableString ss = new SpannableString(new String(s));
2472 TextUtils.copySpansFrom(mSpanned, start, end, Object.class, ss, 0);
2473 return ss;
2474 }
2475 }
2476
2477 private CharSequence mText;
Mathew Inwoodefeab842018-08-14 15:21:30 +01002478 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002479 private TextPaint mPaint;
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07002480 private TextPaint mWorkPaint = new TextPaint();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002481 private int mWidth;
2482 private Alignment mAlignment = Alignment.ALIGN_NORMAL;
2483 private float mSpacingMult;
2484 private float mSpacingAdd;
Romain Guyc4d8eb62010-08-18 20:48:33 -07002485 private static final Rect sTempRect = new Rect();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002486 private boolean mSpannedText;
Doug Feltcb3791202011-07-07 11:57:48 -07002487 private TextDirectionHeuristic mTextDir;
Gilles Debunneeca5b732012-04-25 18:48:42 -07002488 private SpanSet<LineBackgroundSpan> mLineBackgroundSpans;
Seigo Nonaka4b4730d2017-03-31 09:42:16 -07002489 private int mJustificationMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002490
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002491 /** @hide */
Jeff Sharkeyce8db992017-12-13 20:05:05 -07002492 @IntDef(prefix = { "DIR_" }, value = {
2493 DIR_LEFT_TO_RIGHT,
2494 DIR_RIGHT_TO_LEFT
2495 })
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002496 @Retention(RetentionPolicy.SOURCE)
2497 public @interface Direction {}
2498
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002499 public static final int DIR_LEFT_TO_RIGHT = 1;
2500 public static final int DIR_RIGHT_TO_LEFT = -1;
Doug Felt9f7a4442010-03-01 12:45:56 -08002501
Doug Felt20178d62010-02-22 13:39:01 -08002502 /* package */ static final int DIR_REQUEST_LTR = 1;
2503 /* package */ static final int DIR_REQUEST_RTL = -1;
Mathew Inwoodefeab842018-08-14 15:21:30 +01002504 @UnsupportedAppUsage
Doug Felt20178d62010-02-22 13:39:01 -08002505 /* package */ static final int DIR_REQUEST_DEFAULT_LTR = 2;
2506 /* package */ static final int DIR_REQUEST_DEFAULT_RTL = -2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002507
Doug Felt9f7a4442010-03-01 12:45:56 -08002508 /* package */ static final int RUN_LENGTH_MASK = 0x03ffffff;
2509 /* package */ static final int RUN_LEVEL_SHIFT = 26;
2510 /* package */ static final int RUN_LEVEL_MASK = 0x3f;
2511 /* package */ static final int RUN_RTL_FLAG = 1 << RUN_LEVEL_SHIFT;
2512
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002513 public enum Alignment {
2514 ALIGN_NORMAL,
2515 ALIGN_OPPOSITE,
2516 ALIGN_CENTER,
Doug Feltc0ccf0c2011-06-23 16:13:18 -07002517 /** @hide */
Mathew Inwoodefeab842018-08-14 15:21:30 +01002518 @UnsupportedAppUsage
Doug Feltc0ccf0c2011-06-23 16:13:18 -07002519 ALIGN_LEFT,
2520 /** @hide */
Mathew Inwoodefeab842018-08-14 15:21:30 +01002521 @UnsupportedAppUsage
Doug Feltc0ccf0c2011-06-23 16:13:18 -07002522 ALIGN_RIGHT,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002523 }
2524
2525 private static final int TAB_INCREMENT = 20;
2526
Siyamed Sinired09ae12016-02-16 14:36:26 -08002527 /** @hide */
2528 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
Mathew Inwoodefeab842018-08-14 15:21:30 +01002529 @UnsupportedAppUsage
Siyamed Sinired09ae12016-02-16 14:36:26 -08002530 public static final Directions DIRS_ALL_LEFT_TO_RIGHT =
Doug Felt9f7a4442010-03-01 12:45:56 -08002531 new Directions(new int[] { 0, RUN_LENGTH_MASK });
Siyamed Sinired09ae12016-02-16 14:36:26 -08002532
2533 /** @hide */
2534 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
Mathew Inwoodefeab842018-08-14 15:21:30 +01002535 @UnsupportedAppUsage
Siyamed Sinired09ae12016-02-16 14:36:26 -08002536 public static final Directions DIRS_ALL_RIGHT_TO_LEFT =
Doug Felt9f7a4442010-03-01 12:45:56 -08002537 new Directions(new int[] { 0, RUN_LENGTH_MASK | RUN_RTL_FLAG });
Gilles Debunne0a4db3c2011-01-14 12:12:04 -08002538
Petar Šeginafb748b32017-08-07 12:37:52 +01002539 /** @hide */
Petar Šeginab92c5392017-09-06 15:25:05 +01002540 @Retention(RetentionPolicy.SOURCE)
Jeff Sharkeyce8db992017-12-13 20:05:05 -07002541 @IntDef(prefix = { "TEXT_SELECTION_LAYOUT_" }, value = {
2542 TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT,
2543 TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT
2544 })
Petar Šegina3a92fb62017-09-07 21:03:24 +01002545 public @interface TextSelectionLayout {}
2546
2547 /** @hide */
2548 public static final int TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT = 0;
2549 /** @hide */
2550 public static final int TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT = 1;
Petar Šeginab92c5392017-09-06 15:25:05 +01002551
2552 /** @hide */
Petar Šeginafb748b32017-08-07 12:37:52 +01002553 @FunctionalInterface
Petar Šeginab92c5392017-09-06 15:25:05 +01002554 public interface SelectionRectangleConsumer {
Petar Šeginafb748b32017-08-07 12:37:52 +01002555 /**
2556 * Performs this operation on the given rectangle.
2557 *
2558 * @param left the left edge of the rectangle
2559 * @param top the top edge of the rectangle
2560 * @param right the right edge of the rectangle
2561 * @param bottom the bottom edge of the rectangle
Petar Šeginab92c5392017-09-06 15:25:05 +01002562 * @param textSelectionLayout the layout (RTL or LTR) of the text covered by this
2563 * selection rectangle
Petar Šeginafb748b32017-08-07 12:37:52 +01002564 */
Petar Šeginab92c5392017-09-06 15:25:05 +01002565 void accept(float left, float top, float right, float bottom,
2566 @TextSelectionLayout int textSelectionLayout);
Petar Šeginafb748b32017-08-07 12:37:52 +01002567 }
2568
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002569}