blob: 0808cdd6aedbd33a34b04c986a5ac8aba53f7719 [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) {
1272 int dir = getParagraphDirection(line);
1273 Alignment align = getParagraphAlignment(line);
1274
Doug Feltc0ccf0c2011-06-23 16:13:18 -07001275 if (align == Alignment.ALIGN_LEFT) {
1276 return 0;
1277 } else if (align == Alignment.ALIGN_NORMAL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001278 if (dir == DIR_RIGHT_TO_LEFT)
1279 return getParagraphRight(line) - getLineMax(line);
1280 else
1281 return 0;
Doug Feltc0ccf0c2011-06-23 16:13:18 -07001282 } else if (align == Alignment.ALIGN_RIGHT) {
1283 return mWidth - getLineMax(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001284 } else if (align == Alignment.ALIGN_OPPOSITE) {
1285 if (dir == DIR_RIGHT_TO_LEFT)
1286 return 0;
1287 else
1288 return mWidth - getLineMax(line);
1289 } else { /* align == Alignment.ALIGN_CENTER */
1290 int left = getParagraphLeft(line);
1291 int right = getParagraphRight(line);
1292 int max = ((int) getLineMax(line)) & ~1;
1293
1294 return left + ((right - left) - max) / 2;
1295 }
1296 }
1297
1298 /**
1299 * Get the rightmost position that should be exposed for horizontal
1300 * scrolling on the specified line.
1301 */
1302 public float getLineRight(int line) {
1303 int dir = getParagraphDirection(line);
1304 Alignment align = getParagraphAlignment(line);
1305
Doug Feltc0ccf0c2011-06-23 16:13:18 -07001306 if (align == Alignment.ALIGN_LEFT) {
1307 return getParagraphLeft(line) + getLineMax(line);
1308 } else if (align == Alignment.ALIGN_NORMAL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001309 if (dir == DIR_RIGHT_TO_LEFT)
1310 return mWidth;
1311 else
1312 return getParagraphLeft(line) + getLineMax(line);
Doug Feltc0ccf0c2011-06-23 16:13:18 -07001313 } else if (align == Alignment.ALIGN_RIGHT) {
1314 return mWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001315 } else if (align == Alignment.ALIGN_OPPOSITE) {
1316 if (dir == DIR_RIGHT_TO_LEFT)
1317 return getLineMax(line);
1318 else
1319 return mWidth;
1320 } else { /* align == Alignment.ALIGN_CENTER */
1321 int left = getParagraphLeft(line);
1322 int right = getParagraphRight(line);
1323 int max = ((int) getLineMax(line)) & ~1;
1324
1325 return right - ((right - left) - max) / 2;
1326 }
1327 }
1328
1329 /**
Doug Felt0c702b82010-05-14 10:55:42 -07001330 * Gets the unsigned horizontal extent of the specified line, including
Doug Feltc982f602010-05-25 11:51:40 -07001331 * leading margin indent, but excluding trailing whitespace.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001332 */
1333 public float getLineMax(int line) {
Doug Feltc982f602010-05-25 11:51:40 -07001334 float margin = getParagraphLeadingMargin(line);
1335 float signedExtent = getLineExtent(line, false);
Anish Athalyec14b3ad2014-07-24 18:03:21 -07001336 return margin + (signedExtent >= 0 ? signedExtent : -signedExtent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001337 }
1338
1339 /**
Doug Feltc982f602010-05-25 11:51:40 -07001340 * Gets the unsigned horizontal extent of the specified line, including
1341 * leading margin indent and trailing whitespace.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001342 */
1343 public float getLineWidth(int line) {
Doug Feltc982f602010-05-25 11:51:40 -07001344 float margin = getParagraphLeadingMargin(line);
1345 float signedExtent = getLineExtent(line, true);
Anish Athalyec14b3ad2014-07-24 18:03:21 -07001346 return margin + (signedExtent >= 0 ? signedExtent : -signedExtent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001347 }
1348
Doug Feltc982f602010-05-25 11:51:40 -07001349 /**
1350 * Like {@link #getLineExtent(int,TabStops,boolean)} but determines the
1351 * tab stops instead of using the ones passed in.
1352 * @param line the index of the line
1353 * @param full whether to include trailing whitespace
1354 * @return the extent of the line
1355 */
1356 private float getLineExtent(int line, boolean full) {
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001357 final int start = getLineStart(line);
1358 final int end = full ? getLineEnd(line) : getLineVisibleEnd(line);
Doug Feltc982f602010-05-25 11:51:40 -07001359
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001360 final boolean hasTabs = getLineContainsTab(line);
Doug Feltc982f602010-05-25 11:51:40 -07001361 TabStops tabStops = null;
Roozbeh Pournader112d9c72015-08-07 12:44:41 -07001362 if (hasTabs && mText instanceof Spanned) {
Doug Feltc982f602010-05-25 11:51:40 -07001363 // Just checking this line should be good enough, tabs should be
1364 // consistent across all lines in a paragraph.
Eric Fischer74d31ef2010-08-05 15:29:36 -07001365 TabStopSpan[] tabs = getParagraphSpans((Spanned) mText, start, end, TabStopSpan.class);
Doug Feltc982f602010-05-25 11:51:40 -07001366 if (tabs.length > 0) {
1367 tabStops = new TabStops(TAB_INCREMENT, tabs); // XXX should reuse
1368 }
1369 }
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001370 final Directions directions = getLineDirections(line);
Fabrice Di Meglio8059e0902011-08-10 16:31:58 -07001371 // Returned directions can actually be null
1372 if (directions == null) {
1373 return 0f;
1374 }
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001375 final int dir = getParagraphDirection(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001376
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001377 final TextLine tl = TextLine.obtain();
1378 final TextPaint paint = mWorkPaint;
1379 paint.set(mPaint);
1380 paint.setHyphenEdit(getHyphen(line));
Mihai Popace642dc2018-05-24 14:25:11 +01001381 tl.set(paint, mText, start, end, dir, directions, hasTabs, tabStops,
1382 getEllipsisStart(line), getEllipsisStart(line) + getEllipsisCount(line));
Seigo Nonaka09da71a2016-11-28 16:24:14 +09001383 if (isJustificationRequired(line)) {
1384 tl.justify(getJustifyWidth(line));
1385 }
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001386 final float width = tl.metrics(null);
Doug Feltc982f602010-05-25 11:51:40 -07001387 TextLine.recycle(tl);
1388 return width;
1389 }
1390
1391 /**
1392 * Returns the signed horizontal extent of the specified line, excluding
1393 * leading margin. If full is false, excludes trailing whitespace.
1394 * @param line the index of the line
1395 * @param tabStops the tab stops, can be null if we know they're not used.
1396 * @param full whether to include trailing whitespace
1397 * @return the extent of the text on this line
1398 */
1399 private float getLineExtent(int line, TabStops tabStops, boolean full) {
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07001400 final int start = getLineStart(line);
1401 final int end = full ? getLineEnd(line) : getLineVisibleEnd(line);
1402 final boolean hasTabs = getLineContainsTab(line);
1403 final Directions directions = getLineDirections(line);
1404 final int dir = getParagraphDirection(line);
Doug Feltc982f602010-05-25 11:51:40 -07001405
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 Felte8e45f22010-03-29 14:58:40 -07001416 TextLine.recycle(tl);
1417 return width;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001418 }
1419
1420 /**
1421 * Get the line number corresponding to the specified vertical position.
1422 * If you ask for a position above 0, you get 0; if you ask for a position
1423 * below the bottom of the text, you get the last line.
1424 */
1425 // FIXME: It may be faster to do a linear search for layouts without many lines.
1426 public int getLineForVertical(int vertical) {
1427 int high = getLineCount(), low = -1, guess;
1428
1429 while (high - low > 1) {
1430 guess = (high + low) / 2;
1431
1432 if (getLineTop(guess) > vertical)
1433 high = guess;
1434 else
1435 low = guess;
1436 }
1437
1438 if (low < 0)
1439 return 0;
1440 else
1441 return low;
1442 }
1443
1444 /**
1445 * Get the line number on which the specified text offset appears.
1446 * If you ask for a position before 0, you get 0; if you ask for a position
1447 * beyond the end of the text, you get the last line.
1448 */
1449 public int getLineForOffset(int offset) {
1450 int high = getLineCount(), low = -1, guess;
1451
1452 while (high - low > 1) {
1453 guess = (high + low) / 2;
1454
1455 if (getLineStart(guess) > offset)
1456 high = guess;
1457 else
1458 low = guess;
1459 }
1460
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001461 if (low < 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001462 return 0;
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001463 } else {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001464 return low;
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001465 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001466 }
1467
1468 /**
Doug Felt9f7a4442010-03-01 12:45:56 -08001469 * Get the character offset on the specified line whose position is
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001470 * closest to the specified horizontal position.
1471 */
1472 public int getOffsetForHorizontal(int line, float horiz) {
Keisuke Kuroyanagif0bb87b72016-02-08 23:52:55 +09001473 return getOffsetForHorizontal(line, horiz, true);
1474 }
1475
1476 /**
1477 * Get the character offset on the specified line whose position is
1478 * closest to the specified horizontal position.
1479 *
1480 * @param line the line used to find the closest offset
1481 * @param horiz the horizontal position used to find the closest offset
1482 * @param primary whether to use the primary position or secondary position to find the offset
1483 *
1484 * @hide
1485 */
1486 public int getOffsetForHorizontal(int line, float horiz, boolean primary) {
Raph Levienedb27f12015-06-01 14:34:47 -07001487 // TODO: use Paint.getOffsetForAdvance to avoid binary search
Keisuke Kuroyanagi00ad16d2015-08-27 18:15:48 +09001488 final int lineEndOffset = getLineEnd(line);
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001489 final int lineStartOffset = getLineStart(line);
1490
1491 Directions dirs = getLineDirections(line);
1492
1493 TextLine tl = TextLine.obtain();
1494 // XXX: we don't care about tabs as we just use TextLine#getOffsetToLeftRightOf here.
1495 tl.set(mPaint, mText, lineStartOffset, lineEndOffset, getParagraphDirection(line), dirs,
Mihai Popace642dc2018-05-24 14:25:11 +01001496 false, null,
1497 getEllipsisStart(line), getEllipsisStart(line) + getEllipsisCount(line));
Mihai Popa7626c862018-05-09 17:31:48 +01001498 final HorizontalMeasurementProvider horizontal =
1499 new HorizontalMeasurementProvider(line, primary);
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001500
Keisuke Kuroyanagi00ad16d2015-08-27 18:15:48 +09001501 final int max;
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001502 if (line == getLineCount() - 1) {
1503 max = lineEndOffset;
1504 } else {
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001505 max = tl.getOffsetToLeftRightOf(lineEndOffset - lineStartOffset,
1506 !isRtlCharAt(lineEndOffset - 1)) + lineStartOffset;
Keisuke Kuroyanagi00ad16d2015-08-27 18:15:48 +09001507 }
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001508 int best = lineStartOffset;
Mihai Popa7626c862018-05-09 17:31:48 +01001509 float bestdist = Math.abs(horizontal.get(lineStartOffset) - horiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001510
Doug Felt9f7a4442010-03-01 12:45:56 -08001511 for (int i = 0; i < dirs.mDirections.length; i += 2) {
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001512 int here = lineStartOffset + dirs.mDirections[i];
Doug Felt9f7a4442010-03-01 12:45:56 -08001513 int there = here + (dirs.mDirections[i+1] & RUN_LENGTH_MASK);
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001514 boolean isRtl = (dirs.mDirections[i+1] & RUN_RTL_FLAG) != 0;
1515 int swap = isRtl ? -1 : 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001516
1517 if (there > max)
1518 there = max;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001519 int high = there - 1 + 1, low = here + 1 - 1, guess;
1520
1521 while (high - low > 1) {
1522 guess = (high + low) / 2;
1523 int adguess = getOffsetAtStartOf(guess);
1524
Mihai Popa7626c862018-05-09 17:31:48 +01001525 if (horizontal.get(adguess) * swap >= horiz * swap) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001526 high = guess;
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001527 } else {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001528 low = guess;
Keisuke Kuroyanagi7c263dd2017-01-12 19:24:18 +09001529 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001530 }
1531
1532 if (low < here + 1)
1533 low = here + 1;
1534
1535 if (low < there) {
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001536 int aft = tl.getOffsetToLeftRightOf(low - lineStartOffset, isRtl) + lineStartOffset;
1537 low = tl.getOffsetToLeftRightOf(aft - lineStartOffset, !isRtl) + lineStartOffset;
1538 if (low >= here && low < there) {
Mihai Popa7626c862018-05-09 17:31:48 +01001539 float dist = Math.abs(horizontal.get(low) - horiz);
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001540 if (aft < there) {
Mihai Popa7626c862018-05-09 17:31:48 +01001541 float other = Math.abs(horizontal.get(aft) - horiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001542
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001543 if (other < dist) {
1544 dist = other;
1545 low = aft;
1546 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001547 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001548
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001549 if (dist < bestdist) {
1550 bestdist = dist;
1551 best = low;
1552 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001553 }
1554 }
1555
Mihai Popa7626c862018-05-09 17:31:48 +01001556 float dist = Math.abs(horizontal.get(here) - horiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557
1558 if (dist < bestdist) {
1559 bestdist = dist;
1560 best = here;
1561 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001562 }
1563
Mihai Popa7626c862018-05-09 17:31:48 +01001564 float dist = Math.abs(horizontal.get(max) - horiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001565
Raph Levien373b7a82013-09-20 15:11:52 -07001566 if (dist <= bestdist) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001567 best = max;
1568 }
1569
Keisuke Kuroyanagi5bff01d2016-01-08 19:55:17 +09001570 TextLine.recycle(tl);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001571 return best;
1572 }
1573
1574 /**
Mihai Popa7626c862018-05-09 17:31:48 +01001575 * Responds to #getHorizontal queries, by selecting the better strategy between:
1576 * - calling #getHorizontal explicitly for each query
1577 * - precomputing all #getHorizontal measurements, and responding to any query in constant time
1578 * The first strategy is used for LTR-only text, while the second is used for all other cases.
1579 * The class is currently only used in #getOffsetForHorizontal, so reuse with care in other
1580 * contexts.
1581 */
1582 private class HorizontalMeasurementProvider {
1583 private final int mLine;
1584 private final boolean mPrimary;
1585
1586 private float[] mHorizontals;
1587 private int mLineStartOffset;
1588
1589 HorizontalMeasurementProvider(final int line, final boolean primary) {
1590 mLine = line;
1591 mPrimary = primary;
1592 init();
1593 }
1594
1595 private void init() {
1596 final Directions dirs = getLineDirections(mLine);
1597 if (dirs == DIRS_ALL_LEFT_TO_RIGHT) {
1598 return;
1599 }
1600
1601 mHorizontals = getLineHorizontals(mLine, false, mPrimary);
1602 mLineStartOffset = getLineStart(mLine);
1603 }
1604
1605 float get(final int offset) {
Siyamed Sinir58df7952018-08-14 18:43:56 -07001606 final int index = offset - mLineStartOffset;
1607 if (mHorizontals == null || index < 0 || index >= mHorizontals.length) {
Mihai Popa7626c862018-05-09 17:31:48 +01001608 return getHorizontal(offset, mPrimary);
1609 } else {
Siyamed Sinir58df7952018-08-14 18:43:56 -07001610 return mHorizontals[index];
Mihai Popa7626c862018-05-09 17:31:48 +01001611 }
1612 }
1613 }
1614
1615 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001616 * Return the text offset after the last character on the specified line.
1617 */
1618 public final int getLineEnd(int line) {
1619 return getLineStart(line + 1);
1620 }
1621
Doug Felt9f7a4442010-03-01 12:45:56 -08001622 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001623 * Return the text offset after the last visible character (so whitespace
1624 * is not counted) on the specified line.
1625 */
1626 public int getLineVisibleEnd(int line) {
1627 return getLineVisibleEnd(line, getLineStart(line), getLineStart(line+1));
1628 }
Doug Felt9f7a4442010-03-01 12:45:56 -08001629
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001630 private int getLineVisibleEnd(int line, int start, int end) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001631 CharSequence text = mText;
1632 char ch;
1633 if (line == getLineCount() - 1) {
1634 return end;
1635 }
1636
1637 for (; end > start; end--) {
1638 ch = text.charAt(end - 1);
1639
1640 if (ch == '\n') {
1641 return end - 1;
1642 }
1643
Seigo Nonaka09da71a2016-11-28 16:24:14 +09001644 if (!TextLine.isLineEndSpace(ch)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001645 break;
1646 }
1647
1648 }
1649
1650 return end;
1651 }
1652
1653 /**
1654 * Return the vertical position of the bottom of the specified line.
1655 */
1656 public final int getLineBottom(int line) {
1657 return getLineTop(line + 1);
1658 }
1659
1660 /**
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001661 * Return the vertical position of the bottom of the specified line without the line spacing
1662 * added.
1663 *
1664 * @hide
1665 */
1666 public final int getLineBottomWithoutSpacing(int line) {
1667 return getLineTop(line + 1) - getLineExtra(line);
1668 }
1669
1670 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001671 * Return the vertical position of the baseline of the specified line.
1672 */
1673 public final int getLineBaseline(int line) {
1674 // getLineTop(line+1) == getLineTop(line)
1675 return getLineTop(line+1) - getLineDescent(line);
1676 }
1677
1678 /**
1679 * Get the ascent of the text on the specified line.
1680 * The return value is negative to match the Paint.ascent() convention.
1681 */
1682 public final int getLineAscent(int line) {
1683 // getLineTop(line+1) - getLineDescent(line) == getLineBaseLine(line)
1684 return getLineTop(line) - (getLineTop(line+1) - getLineDescent(line));
1685 }
1686
Siyamed Sinir0fa89d62017-07-24 20:46:41 -07001687 /**
1688 * Return the extra space added as a result of line spacing attributes
1689 * {@link #getSpacingAdd()} and {@link #getSpacingMultiplier()}. Default value is {@code zero}.
1690 *
1691 * @param line the index of the line, the value should be equal or greater than {@code zero}
1692 * @hide
1693 */
1694 public int getLineExtra(@IntRange(from = 0) int line) {
1695 return 0;
1696 }
1697
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001698 public int getOffsetToLeftOf(int offset) {
Doug Felt9f7a4442010-03-01 12:45:56 -08001699 return getOffsetToLeftRightOf(offset, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001700 }
1701
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001702 public int getOffsetToRightOf(int offset) {
Doug Felt9f7a4442010-03-01 12:45:56 -08001703 return getOffsetToLeftRightOf(offset, false);
1704 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001705
Doug Felt9f7a4442010-03-01 12:45:56 -08001706 private int getOffsetToLeftRightOf(int caret, boolean toLeft) {
1707 int line = getLineForOffset(caret);
1708 int lineStart = getLineStart(line);
1709 int lineEnd = getLineEnd(line);
Doug Felte8e45f22010-03-29 14:58:40 -07001710 int lineDir = getParagraphDirection(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001711
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001712 boolean lineChanged = false;
Doug Felte8e45f22010-03-29 14:58:40 -07001713 boolean advance = toLeft == (lineDir == DIR_RIGHT_TO_LEFT);
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001714 // if walking off line, look at the line we're headed to
1715 if (advance) {
1716 if (caret == lineEnd) {
Doug Felte8e45f22010-03-29 14:58:40 -07001717 if (line < getLineCount() - 1) {
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001718 lineChanged = true;
Doug Felte8e45f22010-03-29 14:58:40 -07001719 ++line;
1720 } else {
1721 return caret; // at very end, don't move
1722 }
Doug Felt9f7a4442010-03-01 12:45:56 -08001723 }
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001724 } else {
1725 if (caret == lineStart) {
1726 if (line > 0) {
1727 lineChanged = true;
1728 --line;
1729 } else {
1730 return caret; // at very start, don't move
1731 }
1732 }
1733 }
Doug Felt9f7a4442010-03-01 12:45:56 -08001734
Gilles Debunne162bf0f2010-11-16 16:23:53 -08001735 if (lineChanged) {
Doug Felte8e45f22010-03-29 14:58:40 -07001736 lineStart = getLineStart(line);
1737 lineEnd = getLineEnd(line);
1738 int newDir = getParagraphDirection(line);
1739 if (newDir != lineDir) {
1740 // unusual case. we want to walk onto the line, but it runs
1741 // in a different direction than this one, so we fake movement
1742 // in the opposite direction.
1743 toLeft = !toLeft;
1744 lineDir = newDir;
1745 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001746 }
Doug Felt9f7a4442010-03-01 12:45:56 -08001747
Doug Felte8e45f22010-03-29 14:58:40 -07001748 Directions directions = getLineDirections(line);
Doug Felt9f7a4442010-03-01 12:45:56 -08001749
Doug Felte8e45f22010-03-29 14:58:40 -07001750 TextLine tl = TextLine.obtain();
1751 // XXX: we don't care about tabs
Mihai Popace642dc2018-05-24 14:25:11 +01001752 tl.set(mPaint, mText, lineStart, lineEnd, lineDir, directions, false, null,
1753 getEllipsisStart(line), getEllipsisStart(line) + getEllipsisCount(line));
Doug Felte8e45f22010-03-29 14:58:40 -07001754 caret = lineStart + tl.getOffsetToLeftRightOf(caret - lineStart, toLeft);
Siyamed Sinira273a702017-10-05 11:22:12 -07001755 TextLine.recycle(tl);
Doug Felte8e45f22010-03-29 14:58:40 -07001756 return caret;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001757 }
1758
1759 private int getOffsetAtStartOf(int offset) {
Doug Felt9f7a4442010-03-01 12:45:56 -08001760 // XXX this probably should skip local reorderings and
1761 // zero-width characters, look at callers
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001762 if (offset == 0)
1763 return 0;
1764
1765 CharSequence text = mText;
1766 char c = text.charAt(offset);
1767
1768 if (c >= '\uDC00' && c <= '\uDFFF') {
1769 char c1 = text.charAt(offset - 1);
1770
1771 if (c1 >= '\uD800' && c1 <= '\uDBFF')
1772 offset -= 1;
1773 }
1774
1775 if (mSpannedText) {
1776 ReplacementSpan[] spans = ((Spanned) text).getSpans(offset, offset,
1777 ReplacementSpan.class);
1778
1779 for (int i = 0; i < spans.length; i++) {
1780 int start = ((Spanned) text).getSpanStart(spans[i]);
1781 int end = ((Spanned) text).getSpanEnd(spans[i]);
1782
1783 if (start < offset && end > offset)
1784 offset = start;
1785 }
1786 }
1787
1788 return offset;
1789 }
1790
1791 /**
Raph Levienafe8e9b2012-12-19 16:09:32 -08001792 * Determine whether we should clamp cursor position. Currently it's
1793 * only robust for left-aligned displays.
1794 * @hide
1795 */
Mathew Inwoodefeab842018-08-14 15:21:30 +01001796 @UnsupportedAppUsage
Raph Levienafe8e9b2012-12-19 16:09:32 -08001797 public boolean shouldClampCursor(int line) {
1798 // Only clamp cursor position in left-aligned displays.
1799 switch (getParagraphAlignment(line)) {
1800 case ALIGN_LEFT:
1801 return true;
1802 case ALIGN_NORMAL:
1803 return getParagraphDirection(line) > 0;
1804 default:
1805 return false;
1806 }
1807
1808 }
1809 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001810 * Fills in the specified Path with a representation of a cursor
1811 * at the specified offset. This will often be a vertical line
Doug Felt4e0c5e52010-03-15 16:56:02 -07001812 * but can be multiple discontinuous lines in text with multiple
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001813 * directionalities.
1814 */
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001815 public void getCursorPath(final int point, final Path dest, final CharSequence editingBuffer) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001816 dest.reset();
1817
1818 int line = getLineForOffset(point);
1819 int top = getLineTop(line);
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001820 int bottom = getLineBottomWithoutSpacing(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001821
Raph Levienafe8e9b2012-12-19 16:09:32 -08001822 boolean clamped = shouldClampCursor(line);
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001823 float h1 = getPrimaryHorizontal(point, clamped) - 0.5f;
1824 float h2 = isLevelBoundary(point) ? getSecondaryHorizontal(point, clamped) - 0.5f : h1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001825
Jeff Brown497a92c2010-09-12 17:55:08 -07001826 int caps = TextKeyListener.getMetaState(editingBuffer, TextKeyListener.META_SHIFT_ON) |
1827 TextKeyListener.getMetaState(editingBuffer, TextKeyListener.META_SELECTING);
1828 int fn = TextKeyListener.getMetaState(editingBuffer, TextKeyListener.META_ALT_ON);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001829 int dist = 0;
1830
1831 if (caps != 0 || fn != 0) {
1832 dist = (bottom - top) >> 2;
1833
1834 if (fn != 0)
1835 top += dist;
1836 if (caps != 0)
1837 bottom -= dist;
1838 }
1839
1840 if (h1 < 0.5f)
1841 h1 = 0.5f;
1842 if (h2 < 0.5f)
1843 h2 = 0.5f;
1844
Jozef BABJAK2fb503f2011-03-17 09:54:51 +01001845 if (Float.compare(h1, h2) == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001846 dest.moveTo(h1, top);
1847 dest.lineTo(h1, bottom);
1848 } else {
1849 dest.moveTo(h1, top);
1850 dest.lineTo(h1, (top + bottom) >> 1);
1851
1852 dest.moveTo(h2, (top + bottom) >> 1);
1853 dest.lineTo(h2, bottom);
1854 }
1855
1856 if (caps == 2) {
1857 dest.moveTo(h2, bottom);
1858 dest.lineTo(h2 - dist, bottom + dist);
1859 dest.lineTo(h2, bottom);
1860 dest.lineTo(h2 + dist, bottom + dist);
1861 } else if (caps == 1) {
1862 dest.moveTo(h2, bottom);
1863 dest.lineTo(h2 - dist, bottom + dist);
1864
1865 dest.moveTo(h2 - dist, bottom + dist - 0.5f);
1866 dest.lineTo(h2 + dist, bottom + dist - 0.5f);
1867
1868 dest.moveTo(h2 + dist, bottom + dist);
1869 dest.lineTo(h2, bottom);
1870 }
1871
1872 if (fn == 2) {
1873 dest.moveTo(h1, top);
1874 dest.lineTo(h1 - dist, top - dist);
1875 dest.lineTo(h1, top);
1876 dest.lineTo(h1 + dist, top - dist);
1877 } else if (fn == 1) {
1878 dest.moveTo(h1, top);
1879 dest.lineTo(h1 - dist, top - dist);
1880
1881 dest.moveTo(h1 - dist, top - dist + 0.5f);
1882 dest.lineTo(h1 + dist, top - dist + 0.5f);
1883
1884 dest.moveTo(h1 + dist, top - dist);
1885 dest.lineTo(h1, top);
1886 }
1887 }
1888
1889 private void addSelection(int line, int start, int end,
Petar Šeginab92c5392017-09-06 15:25:05 +01001890 int top, int bottom, SelectionRectangleConsumer consumer) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001891 int linestart = getLineStart(line);
1892 int lineend = getLineEnd(line);
1893 Directions dirs = getLineDirections(line);
1894
Petar Šeginafb748b32017-08-07 12:37:52 +01001895 if (lineend > linestart && mText.charAt(lineend - 1) == '\n') {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001896 lineend--;
Petar Šeginafb748b32017-08-07 12:37:52 +01001897 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001898
Doug Felt9f7a4442010-03-01 12:45:56 -08001899 for (int i = 0; i < dirs.mDirections.length; i += 2) {
1900 int here = linestart + dirs.mDirections[i];
Petar Šeginafb748b32017-08-07 12:37:52 +01001901 int there = here + (dirs.mDirections[i + 1] & RUN_LENGTH_MASK);
Doug Felt9f7a4442010-03-01 12:45:56 -08001902
Petar Šeginafb748b32017-08-07 12:37:52 +01001903 if (there > lineend) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001904 there = lineend;
Petar Šeginafb748b32017-08-07 12:37:52 +01001905 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001906
1907 if (start <= there && end >= here) {
1908 int st = Math.max(start, here);
1909 int en = Math.min(end, there);
1910
1911 if (st != en) {
Raph Levienafe8e9b2012-12-19 16:09:32 -08001912 float h1 = getHorizontal(st, false, line, false /* not clamped */);
1913 float h2 = getHorizontal(en, true, line, false /* not clamped */);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001914
Fabrice Di Meglio37166012011-08-31 13:56:37 -07001915 float left = Math.min(h1, h2);
1916 float right = Math.max(h1, h2);
1917
Petar Šegina8f1f74e2017-09-07 14:26:28 +01001918 final @TextSelectionLayout int layout =
1919 ((dirs.mDirections[i + 1] & RUN_RTL_FLAG) != 0)
1920 ? TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT
1921 : TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT;
1922
1923 consumer.accept(left, top, right, bottom, layout);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001924 }
1925 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001926 }
1927 }
1928
1929 /**
1930 * Fills in the specified Path with a representation of a highlight
1931 * between the specified offsets. This will often be a rectangle
1932 * or a potentially discontinuous set of rectangles. If the start
1933 * and end are the same, the returned path is empty.
1934 */
1935 public void getSelectionPath(int start, int end, Path dest) {
1936 dest.reset();
Petar Šeginab92c5392017-09-06 15:25:05 +01001937 getSelection(start, end, (left, top, right, bottom, textSelectionLayout) ->
Petar Šeginafb748b32017-08-07 12:37:52 +01001938 dest.addRect(left, top, right, bottom, Path.Direction.CW));
1939 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001940
Petar Šeginafb748b32017-08-07 12:37:52 +01001941 /**
1942 * Calculates the rectangles which should be highlighted to indicate a selection between start
Petar Šeginab92c5392017-09-06 15:25:05 +01001943 * and end and feeds them into the given {@link SelectionRectangleConsumer}.
Petar Šeginafb748b32017-08-07 12:37:52 +01001944 *
1945 * @param start the starting index of the selection
1946 * @param end the ending index of the selection
Petar Šeginab92c5392017-09-06 15:25:05 +01001947 * @param consumer the {@link SelectionRectangleConsumer} which will receive the generated
1948 * rectangles. It will be called every time a rectangle is generated.
Petar Šeginafb748b32017-08-07 12:37:52 +01001949 * @hide
1950 * @see #getSelectionPath(int, int, Path)
1951 */
Petar Šeginab92c5392017-09-06 15:25:05 +01001952 public final void getSelection(int start, int end, final SelectionRectangleConsumer consumer) {
Petar Šeginafb748b32017-08-07 12:37:52 +01001953 if (start == end) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001954 return;
Petar Šeginafb748b32017-08-07 12:37:52 +01001955 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001956
1957 if (end < start) {
1958 int temp = end;
1959 end = start;
1960 start = temp;
1961 }
1962
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001963 final int startline = getLineForOffset(start);
1964 final int endline = getLineForOffset(end);
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001965
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001966 int top = getLineTop(startline);
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001967 int bottom = getLineBottomWithoutSpacing(endline);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001968
1969 if (startline == endline) {
Petar Šeginafb748b32017-08-07 12:37:52 +01001970 addSelection(startline, start, end, top, bottom, consumer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001971 } else {
1972 final float width = mWidth;
1973
1974 addSelection(startline, start, getLineEnd(startline),
Petar Šeginafb748b32017-08-07 12:37:52 +01001975 top, getLineBottom(startline), consumer);
Doug Felt9f7a4442010-03-01 12:45:56 -08001976
Petar Šeginafb748b32017-08-07 12:37:52 +01001977 if (getParagraphDirection(startline) == DIR_RIGHT_TO_LEFT) {
Petar Šeginab92c5392017-09-06 15:25:05 +01001978 consumer.accept(getLineLeft(startline), top, 0, getLineBottom(startline),
Petar Šegina3a92fb62017-09-07 21:03:24 +01001979 TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT);
Petar Šeginafb748b32017-08-07 12:37:52 +01001980 } else {
Petar Šeginab92c5392017-09-06 15:25:05 +01001981 consumer.accept(getLineRight(startline), top, width, getLineBottom(startline),
Petar Šegina3a92fb62017-09-07 21:03:24 +01001982 TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT);
Petar Šeginafb748b32017-08-07 12:37:52 +01001983 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001984
1985 for (int i = startline + 1; i < endline; i++) {
1986 top = getLineTop(i);
1987 bottom = getLineBottom(i);
Petar Šeginab92c5392017-09-06 15:25:05 +01001988 if (getParagraphDirection(i) == DIR_RIGHT_TO_LEFT) {
Petar Šegina3a92fb62017-09-07 21:03:24 +01001989 consumer.accept(0, top, width, bottom, TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT);
Petar Šeginab92c5392017-09-06 15:25:05 +01001990 } else {
Petar Šegina3a92fb62017-09-07 21:03:24 +01001991 consumer.accept(0, top, width, bottom, TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT);
Petar Šeginab92c5392017-09-06 15:25:05 +01001992 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001993 }
1994
1995 top = getLineTop(endline);
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001996 bottom = getLineBottomWithoutSpacing(endline);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001997
Petar Šeginafb748b32017-08-07 12:37:52 +01001998 addSelection(endline, getLineStart(endline), end, top, bottom, consumer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001999
Petar Šeginafb748b32017-08-07 12:37:52 +01002000 if (getParagraphDirection(endline) == DIR_RIGHT_TO_LEFT) {
Petar Šeginab92c5392017-09-06 15:25:05 +01002001 consumer.accept(width, top, getLineRight(endline), bottom,
Petar Šegina3a92fb62017-09-07 21:03:24 +01002002 TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT);
Petar Šeginafb748b32017-08-07 12:37:52 +01002003 } else {
Petar Šeginab92c5392017-09-06 15:25:05 +01002004 consumer.accept(0, top, getLineLeft(endline), bottom,
Petar Šegina3a92fb62017-09-07 21:03:24 +01002005 TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT);
Petar Šeginafb748b32017-08-07 12:37:52 +01002006 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002007 }
2008 }
2009
2010 /**
2011 * Get the alignment of the specified paragraph, taking into account
2012 * markup attached to it.
2013 */
2014 public final Alignment getParagraphAlignment(int line) {
2015 Alignment align = mAlignment;
2016
2017 if (mSpannedText) {
2018 Spanned sp = (Spanned) mText;
Eric Fischer74d31ef2010-08-05 15:29:36 -07002019 AlignmentSpan[] spans = getParagraphSpans(sp, getLineStart(line),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002020 getLineEnd(line),
2021 AlignmentSpan.class);
2022
2023 int spanLength = spans.length;
2024 if (spanLength > 0) {
2025 align = spans[spanLength-1].getAlignment();
2026 }
2027 }
2028
2029 return align;
2030 }
2031
2032 /**
2033 * Get the left edge of the specified paragraph, inset by left margins.
2034 */
2035 public final int getParagraphLeft(int line) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002036 int left = 0;
Doug Feltc982f602010-05-25 11:51:40 -07002037 int dir = getParagraphDirection(line);
2038 if (dir == DIR_RIGHT_TO_LEFT || !mSpannedText) {
2039 return left; // leading margin has no impact, or no styles
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002040 }
Doug Feltc982f602010-05-25 11:51:40 -07002041 return getParagraphLeadingMargin(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002042 }
2043
2044 /**
2045 * Get the right edge of the specified paragraph, inset by right margins.
2046 */
2047 public final int getParagraphRight(int line) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002048 int right = mWidth;
Doug Feltc982f602010-05-25 11:51:40 -07002049 int dir = getParagraphDirection(line);
2050 if (dir == DIR_LEFT_TO_RIGHT || !mSpannedText) {
2051 return right; // leading margin has no impact, or no styles
2052 }
2053 return right - getParagraphLeadingMargin(line);
2054 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002055
Doug Feltc982f602010-05-25 11:51:40 -07002056 /**
2057 * Returns the effective leading margin (unsigned) for this line,
2058 * taking into account LeadingMarginSpan and LeadingMarginSpan2.
2059 * @param line the line index
2060 * @return the leading margin of this line
2061 */
2062 private int getParagraphLeadingMargin(int line) {
2063 if (!mSpannedText) {
2064 return 0;
2065 }
2066 Spanned spanned = (Spanned) mText;
Doug Felt0c702b82010-05-14 10:55:42 -07002067
Doug Feltc982f602010-05-25 11:51:40 -07002068 int lineStart = getLineStart(line);
2069 int lineEnd = getLineEnd(line);
Doug Felt0c702b82010-05-14 10:55:42 -07002070 int spanEnd = spanned.nextSpanTransition(lineStart, lineEnd,
Doug Feltc982f602010-05-25 11:51:40 -07002071 LeadingMarginSpan.class);
Eric Fischer74d31ef2010-08-05 15:29:36 -07002072 LeadingMarginSpan[] spans = getParagraphSpans(spanned, lineStart, spanEnd,
Doug Feltc982f602010-05-25 11:51:40 -07002073 LeadingMarginSpan.class);
2074 if (spans.length == 0) {
2075 return 0; // no leading margin span;
2076 }
Doug Felt0c702b82010-05-14 10:55:42 -07002077
Doug Feltc982f602010-05-25 11:51:40 -07002078 int margin = 0;
Doug Felt0c702b82010-05-14 10:55:42 -07002079
Siyamed Sinira273a702017-10-05 11:22:12 -07002080 boolean useFirstLineMargin = lineStart == 0 || spanned.charAt(lineStart - 1) == '\n';
Anish Athalyeab08c6d2014-08-08 12:09:58 -07002081 for (int i = 0; i < spans.length; i++) {
2082 if (spans[i] instanceof LeadingMarginSpan2) {
2083 int spStart = spanned.getSpanStart(spans[i]);
2084 int spanLine = getLineForOffset(spStart);
2085 int count = ((LeadingMarginSpan2) spans[i]).getLeadingMarginLineCount();
2086 // if there is more than one LeadingMarginSpan2, use the count that is greatest
2087 useFirstLineMargin |= line < spanLine + count;
2088 }
2089 }
Doug Feltc982f602010-05-25 11:51:40 -07002090 for (int i = 0; i < spans.length; i++) {
2091 LeadingMarginSpan span = spans[i];
Doug Feltc982f602010-05-25 11:51:40 -07002092 margin += span.getLeadingMargin(useFirstLineMargin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002093 }
2094
Doug Feltc982f602010-05-25 11:51:40 -07002095 return margin;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002096 }
2097
Roozbeh Pournader9a9179d2017-08-29 14:14:28 -07002098 private static float measurePara(TextPaint paint, CharSequence text, int start, int end,
Siyamed Sinir79bf9d12016-05-18 19:57:52 -07002099 TextDirectionHeuristic textDir) {
Seigo Nonaka9d3bd082018-01-11 10:02:12 -08002100 MeasuredParagraph mt = null;
Doug Felte8e45f22010-03-29 14:58:40 -07002101 TextLine tl = TextLine.obtain();
2102 try {
Seigo Nonaka9d3bd082018-01-11 10:02:12 -08002103 mt = MeasuredParagraph.buildForBidi(text, start, end, textDir, mt);
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002104 final char[] chars = mt.getChars();
2105 final int len = chars.length;
2106 final Directions directions = mt.getDirections(0, len);
2107 final int dir = mt.getParagraphDir();
Doug Feltc982f602010-05-25 11:51:40 -07002108 boolean hasTabs = false;
2109 TabStops tabStops = null;
Anish Athalyec14b3ad2014-07-24 18:03:21 -07002110 // leading margins should be taken into account when measuring a paragraph
2111 int margin = 0;
2112 if (text instanceof Spanned) {
2113 Spanned spanned = (Spanned) text;
2114 LeadingMarginSpan[] spans = getParagraphSpans(spanned, start, end,
2115 LeadingMarginSpan.class);
2116 for (LeadingMarginSpan lms : spans) {
2117 margin += lms.getLeadingMargin(true);
2118 }
2119 }
Doug Feltc982f602010-05-25 11:51:40 -07002120 for (int i = 0; i < len; ++i) {
2121 if (chars[i] == '\t') {
2122 hasTabs = true;
2123 if (text instanceof Spanned) {
2124 Spanned spanned = (Spanned) text;
Doug Felt0c702b82010-05-14 10:55:42 -07002125 int spanEnd = spanned.nextSpanTransition(start, end,
Doug Feltc982f602010-05-25 11:51:40 -07002126 TabStopSpan.class);
Eric Fischer74d31ef2010-08-05 15:29:36 -07002127 TabStopSpan[] spans = getParagraphSpans(spanned, start, spanEnd,
Doug Feltc982f602010-05-25 11:51:40 -07002128 TabStopSpan.class);
2129 if (spans.length > 0) {
2130 tabStops = new TabStops(TAB_INCREMENT, spans);
2131 }
2132 }
2133 break;
2134 }
2135 }
Mihai Popace642dc2018-05-24 14:25:11 +01002136 tl.set(paint, text, start, end, dir, directions, hasTabs, tabStops,
2137 0 /* ellipsisStart */, 0 /* ellipsisEnd */);
Siyamed Sinir79bf9d12016-05-18 19:57:52 -07002138 return margin + Math.abs(tl.metrics(null));
Doug Felte8e45f22010-03-29 14:58:40 -07002139 } finally {
2140 TextLine.recycle(tl);
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002141 if (mt != null) {
2142 mt.recycle();
2143 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002144 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002145 }
2146
Doug Felt71b8dd72010-02-16 17:27:09 -08002147 /**
Doug Feltc982f602010-05-25 11:51:40 -07002148 * @hide
2149 */
Seigo Nonaka32afe262018-05-16 22:05:27 -07002150 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
2151 public static class TabStops {
Doug Feltc982f602010-05-25 11:51:40 -07002152 private int[] mStops;
2153 private int mNumStops;
2154 private int mIncrement;
Doug Felt0c702b82010-05-14 10:55:42 -07002155
Seigo Nonaka32afe262018-05-16 22:05:27 -07002156 public TabStops(int increment, Object[] spans) {
Doug Feltc982f602010-05-25 11:51:40 -07002157 reset(increment, spans);
2158 }
Doug Felt0c702b82010-05-14 10:55:42 -07002159
Doug Feltc982f602010-05-25 11:51:40 -07002160 void reset(int increment, Object[] spans) {
2161 this.mIncrement = increment;
2162
2163 int ns = 0;
2164 if (spans != null) {
2165 int[] stops = this.mStops;
2166 for (Object o : spans) {
2167 if (o instanceof TabStopSpan) {
2168 if (stops == null) {
2169 stops = new int[10];
2170 } else if (ns == stops.length) {
2171 int[] nstops = new int[ns * 2];
2172 for (int i = 0; i < ns; ++i) {
2173 nstops[i] = stops[i];
2174 }
2175 stops = nstops;
2176 }
2177 stops[ns++] = ((TabStopSpan) o).getTabStop();
2178 }
2179 }
2180 if (ns > 1) {
2181 Arrays.sort(stops, 0, ns);
2182 }
2183 if (stops != this.mStops) {
2184 this.mStops = stops;
2185 }
2186 }
2187 this.mNumStops = ns;
2188 }
Doug Felt0c702b82010-05-14 10:55:42 -07002189
Doug Feltc982f602010-05-25 11:51:40 -07002190 float nextTab(float h) {
2191 int ns = this.mNumStops;
2192 if (ns > 0) {
2193 int[] stops = this.mStops;
2194 for (int i = 0; i < ns; ++i) {
2195 int stop = stops[i];
2196 if (stop > h) {
2197 return stop;
2198 }
2199 }
2200 }
2201 return nextDefaultStop(h, mIncrement);
2202 }
2203
2204 public static float nextDefaultStop(float h, int inc) {
2205 return ((int) ((h + inc) / inc)) * inc;
2206 }
2207 }
Doug Felt0c702b82010-05-14 10:55:42 -07002208
Doug Feltc982f602010-05-25 11:51:40 -07002209 /**
Doug Felt71b8dd72010-02-16 17:27:09 -08002210 * Returns the position of the next tab stop after h on the line.
2211 *
2212 * @param text the text
2213 * @param start start of the line
2214 * @param end limit of the line
2215 * @param h the current horizontal offset
2216 * @param tabs the tabs, can be null. If it is null, any tabs in effect
2217 * on the line will be used. If there are no tabs, a default offset
2218 * will be used to compute the tab stop.
2219 * @return the offset of the next tab stop.
2220 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002221 /* package */ static float nextTab(CharSequence text, int start, int end,
2222 float h, Object[] tabs) {
2223 float nh = Float.MAX_VALUE;
2224 boolean alltabs = false;
2225
2226 if (text instanceof Spanned) {
2227 if (tabs == null) {
Eric Fischer74d31ef2010-08-05 15:29:36 -07002228 tabs = getParagraphSpans((Spanned) text, start, end, TabStopSpan.class);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002229 alltabs = true;
2230 }
2231
2232 for (int i = 0; i < tabs.length; i++) {
2233 if (!alltabs) {
2234 if (!(tabs[i] instanceof TabStopSpan))
2235 continue;
2236 }
2237
2238 int where = ((TabStopSpan) tabs[i]).getTabStop();
2239
2240 if (where < nh && where > h)
2241 nh = where;
2242 }
2243
2244 if (nh != Float.MAX_VALUE)
2245 return nh;
2246 }
2247
2248 return ((int) ((h + TAB_INCREMENT) / TAB_INCREMENT)) * TAB_INCREMENT;
2249 }
2250
2251 protected final boolean isSpanned() {
2252 return mSpannedText;
2253 }
2254
Eric Fischer74d31ef2010-08-05 15:29:36 -07002255 /**
2256 * Returns the same as <code>text.getSpans()</code>, except where
2257 * <code>start</code> and <code>end</code> are the same and are not
2258 * at the very beginning of the text, in which case an empty array
2259 * is returned instead.
2260 * <p>
2261 * This is needed because of the special case that <code>getSpans()</code>
2262 * on an empty range returns the spans adjacent to that range, which is
2263 * primarily for the sake of <code>TextWatchers</code> so they will get
2264 * notifications when text goes from empty to non-empty. But it also
2265 * has the unfortunate side effect that if the text ends with an empty
2266 * paragraph, that paragraph accidentally picks up the styles of the
2267 * preceding paragraph (even though those styles will not be picked up
2268 * by new text that is inserted into the empty paragraph).
2269 * <p>
2270 * The reason it just checks whether <code>start</code> and <code>end</code>
2271 * is the same is that the only time a line can contain 0 characters
2272 * is if it is the final paragraph of the Layout; otherwise any line will
2273 * contain at least one printing or newline character. The reason for the
2274 * additional check if <code>start</code> is greater than 0 is that
2275 * if the empty paragraph is the entire content of the buffer, paragraph
2276 * styles that are already applied to the buffer will apply to text that
2277 * is inserted into it.
2278 */
Gilles Debunneeca5b732012-04-25 18:48:42 -07002279 /* package */static <T> T[] getParagraphSpans(Spanned text, int start, int end, Class<T> type) {
Eric Fischer74d31ef2010-08-05 15:29:36 -07002280 if (start == end && start > 0) {
Gilles Debunne6c488de2012-03-01 16:20:35 -08002281 return ArrayUtils.emptyArray(type);
Eric Fischer74d31ef2010-08-05 15:29:36 -07002282 }
2283
Siyamed Sinirfa05ba02016-01-12 10:54:43 -08002284 if(text instanceof SpannableStringBuilder) {
2285 return ((SpannableStringBuilder) text).getSpans(start, end, type, false);
2286 } else {
2287 return text.getSpans(start, end, type);
2288 }
Eric Fischer74d31ef2010-08-05 15:29:36 -07002289 }
2290
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002291 private void ellipsize(int start, int end, int line,
Fabrice Di Meglio8d44fff2012-06-13 15:45:38 -07002292 char[] dest, int destoff, TextUtils.TruncateAt method) {
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002293 final int ellipsisCount = getEllipsisCount(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002294 if (ellipsisCount == 0) {
2295 return;
2296 }
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002297 final int ellipsisStart = getEllipsisStart(line);
2298 final int lineStart = getLineStart(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002299
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002300 final String ellipsisString = TextUtils.getEllipsisString(method);
2301 final int ellipsisStringLen = ellipsisString.length();
Roozbeh Pournader1051bbe2017-07-25 13:52:57 -07002302 // Use the ellipsis string only if there are that at least as many characters to replace.
2303 final boolean useEllipsisString = ellipsisCount >= ellipsisStringLen;
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002304 for (int i = 0; i < ellipsisCount; i++) {
2305 final char c;
Roozbeh Pournader1051bbe2017-07-25 13:52:57 -07002306 if (useEllipsisString && i < ellipsisStringLen) {
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002307 c = ellipsisString.charAt(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002308 } else {
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002309 c = TextUtils.ELLIPSIS_FILLER;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002310 }
2311
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002312 final int a = i + ellipsisStart + lineStart;
2313 if (start <= a && a < end) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002314 dest[destoff + a - start] = c;
2315 }
2316 }
2317 }
2318
2319 /**
2320 * Stores information about bidirectional (left-to-right or right-to-left)
Doug Felt9f7a4442010-03-01 12:45:56 -08002321 * text within the layout of a line.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002322 */
2323 public static class Directions {
Siyamed Sinired09ae12016-02-16 14:36:26 -08002324 /**
Petar Šegina7c31d5c2017-09-25 12:19:28 +01002325 * Directions represents directional runs within a line of text. Runs are pairs of ints
2326 * listed in visual order, starting from the leading margin. The first int of each pair is
2327 * the offset from the first character of the line to the start of the run. The second int
2328 * represents both the length and level of the run. The length is in the lower bits,
2329 * accessed by masking with RUN_LENGTH_MASK. The level is in the higher bits, accessed by
2330 * shifting by RUN_LEVEL_SHIFT and masking by RUN_LEVEL_MASK. To simply test for an RTL
2331 * direction, test the bit using RUN_RTL_FLAG, if set then the direction is rtl.
Siyamed Sinired09ae12016-02-16 14:36:26 -08002332 * @hide
2333 */
2334 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
2335 public int[] mDirections;
2336
2337 /**
2338 * @hide
2339 */
2340 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
2341 public Directions(int[] dirs) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002342 mDirections = dirs;
2343 }
2344 }
2345
2346 /**
2347 * Return the offset of the first character to be ellipsized away,
2348 * relative to the start of the line. (So 0 if the beginning of the
2349 * line is ellipsized, not getLineStart().)
2350 */
2351 public abstract int getEllipsisStart(int line);
Doug Felte8e45f22010-03-29 14:58:40 -07002352
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002353 /**
2354 * Returns the number of characters to be ellipsized away, or 0 if
2355 * no ellipsis is to take place.
2356 */
2357 public abstract int getEllipsisCount(int line);
2358
2359 /* package */ static class Ellipsizer implements CharSequence, GetChars {
2360 /* package */ CharSequence mText;
2361 /* package */ Layout mLayout;
2362 /* package */ int mWidth;
2363 /* package */ TextUtils.TruncateAt mMethod;
2364
2365 public Ellipsizer(CharSequence s) {
2366 mText = s;
2367 }
2368
2369 public char charAt(int off) {
2370 char[] buf = TextUtils.obtain(1);
2371 getChars(off, off + 1, buf, 0);
2372 char ret = buf[0];
2373
2374 TextUtils.recycle(buf);
2375 return ret;
2376 }
2377
2378 public void getChars(int start, int end, char[] dest, int destoff) {
2379 int line1 = mLayout.getLineForOffset(start);
2380 int line2 = mLayout.getLineForOffset(end);
2381
2382 TextUtils.getChars(mText, start, end, dest, destoff);
2383
2384 for (int i = line1; i <= line2; i++) {
Fabrice Di Meglio8d44fff2012-06-13 15:45:38 -07002385 mLayout.ellipsize(start, end, i, dest, destoff, mMethod);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002386 }
2387 }
2388
2389 public int length() {
2390 return mText.length();
2391 }
Doug Felt9f7a4442010-03-01 12:45:56 -08002392
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002393 public CharSequence subSequence(int start, int end) {
2394 char[] s = new char[end - start];
2395 getChars(start, end, s, 0);
2396 return new String(s);
2397 }
2398
Gilles Debunne162bf0f2010-11-16 16:23:53 -08002399 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002400 public String toString() {
2401 char[] s = new char[length()];
2402 getChars(0, length(), s, 0);
2403 return new String(s);
2404 }
2405
2406 }
2407
Gilles Debunne6c488de2012-03-01 16:20:35 -08002408 /* package */ static class SpannedEllipsizer extends Ellipsizer implements Spanned {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002409 private Spanned mSpanned;
2410
2411 public SpannedEllipsizer(CharSequence display) {
2412 super(display);
2413 mSpanned = (Spanned) display;
2414 }
2415
2416 public <T> T[] getSpans(int start, int end, Class<T> type) {
2417 return mSpanned.getSpans(start, end, type);
2418 }
2419
2420 public int getSpanStart(Object tag) {
2421 return mSpanned.getSpanStart(tag);
2422 }
2423
2424 public int getSpanEnd(Object tag) {
2425 return mSpanned.getSpanEnd(tag);
2426 }
2427
2428 public int getSpanFlags(Object tag) {
2429 return mSpanned.getSpanFlags(tag);
2430 }
2431
Gilles Debunne6c488de2012-03-01 16:20:35 -08002432 @SuppressWarnings("rawtypes")
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002433 public int nextSpanTransition(int start, int limit, Class type) {
2434 return mSpanned.nextSpanTransition(start, limit, type);
2435 }
2436
Gilles Debunne162bf0f2010-11-16 16:23:53 -08002437 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002438 public CharSequence subSequence(int start, int end) {
2439 char[] s = new char[end - start];
2440 getChars(start, end, s, 0);
2441
2442 SpannableString ss = new SpannableString(new String(s));
2443 TextUtils.copySpansFrom(mSpanned, start, end, Object.class, ss, 0);
2444 return ss;
2445 }
2446 }
2447
2448 private CharSequence mText;
Mathew Inwoodefeab842018-08-14 15:21:30 +01002449 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002450 private TextPaint mPaint;
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07002451 private TextPaint mWorkPaint = new TextPaint();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002452 private int mWidth;
2453 private Alignment mAlignment = Alignment.ALIGN_NORMAL;
2454 private float mSpacingMult;
2455 private float mSpacingAdd;
Romain Guyc4d8eb62010-08-18 20:48:33 -07002456 private static final Rect sTempRect = new Rect();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002457 private boolean mSpannedText;
Doug Feltcb3791202011-07-07 11:57:48 -07002458 private TextDirectionHeuristic mTextDir;
Gilles Debunneeca5b732012-04-25 18:48:42 -07002459 private SpanSet<LineBackgroundSpan> mLineBackgroundSpans;
Seigo Nonaka4b4730d2017-03-31 09:42:16 -07002460 private int mJustificationMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002461
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002462 /** @hide */
Jeff Sharkeyce8db992017-12-13 20:05:05 -07002463 @IntDef(prefix = { "DIR_" }, value = {
2464 DIR_LEFT_TO_RIGHT,
2465 DIR_RIGHT_TO_LEFT
2466 })
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002467 @Retention(RetentionPolicy.SOURCE)
2468 public @interface Direction {}
2469
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002470 public static final int DIR_LEFT_TO_RIGHT = 1;
2471 public static final int DIR_RIGHT_TO_LEFT = -1;
Doug Felt9f7a4442010-03-01 12:45:56 -08002472
Doug Felt20178d62010-02-22 13:39:01 -08002473 /* package */ static final int DIR_REQUEST_LTR = 1;
2474 /* package */ static final int DIR_REQUEST_RTL = -1;
Mathew Inwoodefeab842018-08-14 15:21:30 +01002475 @UnsupportedAppUsage
Doug Felt20178d62010-02-22 13:39:01 -08002476 /* package */ static final int DIR_REQUEST_DEFAULT_LTR = 2;
2477 /* package */ static final int DIR_REQUEST_DEFAULT_RTL = -2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002478
Doug Felt9f7a4442010-03-01 12:45:56 -08002479 /* package */ static final int RUN_LENGTH_MASK = 0x03ffffff;
2480 /* package */ static final int RUN_LEVEL_SHIFT = 26;
2481 /* package */ static final int RUN_LEVEL_MASK = 0x3f;
2482 /* package */ static final int RUN_RTL_FLAG = 1 << RUN_LEVEL_SHIFT;
2483
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002484 public enum Alignment {
2485 ALIGN_NORMAL,
2486 ALIGN_OPPOSITE,
2487 ALIGN_CENTER,
Doug Feltc0ccf0c2011-06-23 16:13:18 -07002488 /** @hide */
Mathew Inwoodefeab842018-08-14 15:21:30 +01002489 @UnsupportedAppUsage
Doug Feltc0ccf0c2011-06-23 16:13:18 -07002490 ALIGN_LEFT,
2491 /** @hide */
Mathew Inwoodefeab842018-08-14 15:21:30 +01002492 @UnsupportedAppUsage
Doug Feltc0ccf0c2011-06-23 16:13:18 -07002493 ALIGN_RIGHT,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002494 }
2495
2496 private static final int TAB_INCREMENT = 20;
2497
Siyamed Sinired09ae12016-02-16 14:36:26 -08002498 /** @hide */
2499 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
Mathew Inwoodefeab842018-08-14 15:21:30 +01002500 @UnsupportedAppUsage
Siyamed Sinired09ae12016-02-16 14:36:26 -08002501 public static final Directions DIRS_ALL_LEFT_TO_RIGHT =
Doug Felt9f7a4442010-03-01 12:45:56 -08002502 new Directions(new int[] { 0, RUN_LENGTH_MASK });
Siyamed Sinired09ae12016-02-16 14:36:26 -08002503
2504 /** @hide */
2505 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
Mathew Inwoodefeab842018-08-14 15:21:30 +01002506 @UnsupportedAppUsage
Siyamed Sinired09ae12016-02-16 14:36:26 -08002507 public static final Directions DIRS_ALL_RIGHT_TO_LEFT =
Doug Felt9f7a4442010-03-01 12:45:56 -08002508 new Directions(new int[] { 0, RUN_LENGTH_MASK | RUN_RTL_FLAG });
Gilles Debunne0a4db3c2011-01-14 12:12:04 -08002509
Petar Šeginafb748b32017-08-07 12:37:52 +01002510 /** @hide */
Petar Šeginab92c5392017-09-06 15:25:05 +01002511 @Retention(RetentionPolicy.SOURCE)
Jeff Sharkeyce8db992017-12-13 20:05:05 -07002512 @IntDef(prefix = { "TEXT_SELECTION_LAYOUT_" }, value = {
2513 TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT,
2514 TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT
2515 })
Petar Šegina3a92fb62017-09-07 21:03:24 +01002516 public @interface TextSelectionLayout {}
2517
2518 /** @hide */
2519 public static final int TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT = 0;
2520 /** @hide */
2521 public static final int TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT = 1;
Petar Šeginab92c5392017-09-06 15:25:05 +01002522
2523 /** @hide */
Petar Šeginafb748b32017-08-07 12:37:52 +01002524 @FunctionalInterface
Petar Šeginab92c5392017-09-06 15:25:05 +01002525 public interface SelectionRectangleConsumer {
Petar Šeginafb748b32017-08-07 12:37:52 +01002526 /**
2527 * Performs this operation on the given rectangle.
2528 *
2529 * @param left the left edge of the rectangle
2530 * @param top the top edge of the rectangle
2531 * @param right the right edge of the rectangle
2532 * @param bottom the bottom edge of the rectangle
Petar Šeginab92c5392017-09-06 15:25:05 +01002533 * @param textSelectionLayout the layout (RTL or LTR) of the text covered by this
2534 * selection rectangle
Petar Šeginafb748b32017-08-07 12:37:52 +01002535 */
Petar Šeginab92c5392017-09-06 15:25:05 +01002536 void accept(float left, float top, float right, float bottom,
2537 @TextSelectionLayout int textSelectionLayout);
Petar Šeginafb748b32017-08-07 12:37:52 +01002538 }
2539
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002540}