blob: 3ab8a0a8885f4578f28d29df166f38bf4bcc1f69 [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 }
qqd19799c42018-10-16 15:55:11 -07001809
Raph Levienafe8e9b2012-12-19 16:09:32 -08001810 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001811 * Fills in the specified Path with a representation of a cursor
1812 * at the specified offset. This will often be a vertical line
Doug Felt4e0c5e52010-03-15 16:56:02 -07001813 * but can be multiple discontinuous lines in text with multiple
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001814 * directionalities.
1815 */
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001816 public void getCursorPath(final int point, final Path dest, final CharSequence editingBuffer) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001817 dest.reset();
1818
1819 int line = getLineForOffset(point);
1820 int top = getLineTop(line);
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001821 int bottom = getLineBottomWithoutSpacing(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001822
Raph Levienafe8e9b2012-12-19 16:09:32 -08001823 boolean clamped = shouldClampCursor(line);
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001824 float h1 = getPrimaryHorizontal(point, clamped) - 0.5f;
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;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001842
qqd19799c42018-10-16 15:55:11 -07001843 dest.moveTo(h1, top);
1844 dest.lineTo(h1, bottom);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001845
1846 if (caps == 2) {
qqd19799c42018-10-16 15:55:11 -07001847 dest.moveTo(h1, bottom);
1848 dest.lineTo(h1 - dist, bottom + dist);
1849 dest.lineTo(h1, bottom);
1850 dest.lineTo(h1 + dist, bottom + dist);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001851 } else if (caps == 1) {
qqd19799c42018-10-16 15:55:11 -07001852 dest.moveTo(h1, bottom);
1853 dest.lineTo(h1 - dist, bottom + dist);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001854
qqd19799c42018-10-16 15:55:11 -07001855 dest.moveTo(h1 - dist, bottom + dist - 0.5f);
1856 dest.lineTo(h1 + dist, bottom + dist - 0.5f);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001857
qqd19799c42018-10-16 15:55:11 -07001858 dest.moveTo(h1 + dist, bottom + dist);
1859 dest.lineTo(h1, bottom);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001860 }
1861
1862 if (fn == 2) {
1863 dest.moveTo(h1, top);
1864 dest.lineTo(h1 - dist, top - dist);
1865 dest.lineTo(h1, top);
1866 dest.lineTo(h1 + dist, top - dist);
1867 } else if (fn == 1) {
1868 dest.moveTo(h1, top);
1869 dest.lineTo(h1 - dist, top - dist);
1870
1871 dest.moveTo(h1 - dist, top - dist + 0.5f);
1872 dest.lineTo(h1 + dist, top - dist + 0.5f);
1873
1874 dest.moveTo(h1 + dist, top - dist);
1875 dest.lineTo(h1, top);
1876 }
1877 }
1878
1879 private void addSelection(int line, int start, int end,
Petar Šeginab92c5392017-09-06 15:25:05 +01001880 int top, int bottom, SelectionRectangleConsumer consumer) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001881 int linestart = getLineStart(line);
1882 int lineend = getLineEnd(line);
1883 Directions dirs = getLineDirections(line);
1884
Petar Šeginafb748b32017-08-07 12:37:52 +01001885 if (lineend > linestart && mText.charAt(lineend - 1) == '\n') {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001886 lineend--;
Petar Šeginafb748b32017-08-07 12:37:52 +01001887 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001888
Doug Felt9f7a4442010-03-01 12:45:56 -08001889 for (int i = 0; i < dirs.mDirections.length; i += 2) {
1890 int here = linestart + dirs.mDirections[i];
Petar Šeginafb748b32017-08-07 12:37:52 +01001891 int there = here + (dirs.mDirections[i + 1] & RUN_LENGTH_MASK);
Doug Felt9f7a4442010-03-01 12:45:56 -08001892
Petar Šeginafb748b32017-08-07 12:37:52 +01001893 if (there > lineend) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001894 there = lineend;
Petar Šeginafb748b32017-08-07 12:37:52 +01001895 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001896
1897 if (start <= there && end >= here) {
1898 int st = Math.max(start, here);
1899 int en = Math.min(end, there);
1900
1901 if (st != en) {
Raph Levienafe8e9b2012-12-19 16:09:32 -08001902 float h1 = getHorizontal(st, false, line, false /* not clamped */);
1903 float h2 = getHorizontal(en, true, line, false /* not clamped */);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001904
Fabrice Di Meglio37166012011-08-31 13:56:37 -07001905 float left = Math.min(h1, h2);
1906 float right = Math.max(h1, h2);
1907
Petar Šegina8f1f74e2017-09-07 14:26:28 +01001908 final @TextSelectionLayout int layout =
1909 ((dirs.mDirections[i + 1] & RUN_RTL_FLAG) != 0)
1910 ? TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT
1911 : TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT;
1912
1913 consumer.accept(left, top, right, bottom, layout);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001914 }
1915 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001916 }
1917 }
1918
1919 /**
1920 * Fills in the specified Path with a representation of a highlight
1921 * between the specified offsets. This will often be a rectangle
1922 * or a potentially discontinuous set of rectangles. If the start
1923 * and end are the same, the returned path is empty.
1924 */
1925 public void getSelectionPath(int start, int end, Path dest) {
1926 dest.reset();
Petar Šeginab92c5392017-09-06 15:25:05 +01001927 getSelection(start, end, (left, top, right, bottom, textSelectionLayout) ->
Petar Šeginafb748b32017-08-07 12:37:52 +01001928 dest.addRect(left, top, right, bottom, Path.Direction.CW));
1929 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001930
Petar Šeginafb748b32017-08-07 12:37:52 +01001931 /**
1932 * Calculates the rectangles which should be highlighted to indicate a selection between start
Petar Šeginab92c5392017-09-06 15:25:05 +01001933 * and end and feeds them into the given {@link SelectionRectangleConsumer}.
Petar Šeginafb748b32017-08-07 12:37:52 +01001934 *
1935 * @param start the starting index of the selection
1936 * @param end the ending index of the selection
Petar Šeginab92c5392017-09-06 15:25:05 +01001937 * @param consumer the {@link SelectionRectangleConsumer} which will receive the generated
1938 * rectangles. It will be called every time a rectangle is generated.
Petar Šeginafb748b32017-08-07 12:37:52 +01001939 * @hide
1940 * @see #getSelectionPath(int, int, Path)
1941 */
Petar Šeginab92c5392017-09-06 15:25:05 +01001942 public final void getSelection(int start, int end, final SelectionRectangleConsumer consumer) {
Petar Šeginafb748b32017-08-07 12:37:52 +01001943 if (start == end) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001944 return;
Petar Šeginafb748b32017-08-07 12:37:52 +01001945 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001946
1947 if (end < start) {
1948 int temp = end;
1949 end = start;
1950 start = temp;
1951 }
1952
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001953 final int startline = getLineForOffset(start);
1954 final int endline = getLineForOffset(end);
Roozbeh Pournader7557a5a2017-04-11 18:34:42 -07001955
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001956 int top = getLineTop(startline);
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001957 int bottom = getLineBottomWithoutSpacing(endline);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001958
1959 if (startline == endline) {
Petar Šeginafb748b32017-08-07 12:37:52 +01001960 addSelection(startline, start, end, top, bottom, consumer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001961 } else {
1962 final float width = mWidth;
1963
1964 addSelection(startline, start, getLineEnd(startline),
Petar Šeginafb748b32017-08-07 12:37:52 +01001965 top, getLineBottom(startline), consumer);
Doug Felt9f7a4442010-03-01 12:45:56 -08001966
Petar Šeginafb748b32017-08-07 12:37:52 +01001967 if (getParagraphDirection(startline) == DIR_RIGHT_TO_LEFT) {
Petar Šeginab92c5392017-09-06 15:25:05 +01001968 consumer.accept(getLineLeft(startline), top, 0, getLineBottom(startline),
Petar Šegina3a92fb62017-09-07 21:03:24 +01001969 TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT);
Petar Šeginafb748b32017-08-07 12:37:52 +01001970 } else {
Petar Šeginab92c5392017-09-06 15:25:05 +01001971 consumer.accept(getLineRight(startline), top, width, getLineBottom(startline),
Petar Šegina3a92fb62017-09-07 21:03:24 +01001972 TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT);
Petar Šeginafb748b32017-08-07 12:37:52 +01001973 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001974
1975 for (int i = startline + 1; i < endline; i++) {
1976 top = getLineTop(i);
1977 bottom = getLineBottom(i);
Petar Šeginab92c5392017-09-06 15:25:05 +01001978 if (getParagraphDirection(i) == DIR_RIGHT_TO_LEFT) {
Petar Šegina3a92fb62017-09-07 21:03:24 +01001979 consumer.accept(0, top, width, bottom, TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT);
Petar Šeginab92c5392017-09-06 15:25:05 +01001980 } else {
Petar Šegina3a92fb62017-09-07 21:03:24 +01001981 consumer.accept(0, top, width, bottom, TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT);
Petar Šeginab92c5392017-09-06 15:25:05 +01001982 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001983 }
1984
1985 top = getLineTop(endline);
Siyamed Sinira60b59d2017-07-26 09:26:41 -07001986 bottom = getLineBottomWithoutSpacing(endline);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001987
Petar Šeginafb748b32017-08-07 12:37:52 +01001988 addSelection(endline, getLineStart(endline), end, top, bottom, consumer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001989
Petar Šeginafb748b32017-08-07 12:37:52 +01001990 if (getParagraphDirection(endline) == DIR_RIGHT_TO_LEFT) {
Petar Šeginab92c5392017-09-06 15:25:05 +01001991 consumer.accept(width, top, getLineRight(endline), bottom,
Petar Šegina3a92fb62017-09-07 21:03:24 +01001992 TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT);
Petar Šeginafb748b32017-08-07 12:37:52 +01001993 } else {
Petar Šeginab92c5392017-09-06 15:25:05 +01001994 consumer.accept(0, top, getLineLeft(endline), bottom,
Petar Šegina3a92fb62017-09-07 21:03:24 +01001995 TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT);
Petar Šeginafb748b32017-08-07 12:37:52 +01001996 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001997 }
1998 }
1999
2000 /**
2001 * Get the alignment of the specified paragraph, taking into account
2002 * markup attached to it.
2003 */
2004 public final Alignment getParagraphAlignment(int line) {
2005 Alignment align = mAlignment;
2006
2007 if (mSpannedText) {
2008 Spanned sp = (Spanned) mText;
Eric Fischer74d31ef2010-08-05 15:29:36 -07002009 AlignmentSpan[] spans = getParagraphSpans(sp, getLineStart(line),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002010 getLineEnd(line),
2011 AlignmentSpan.class);
2012
2013 int spanLength = spans.length;
2014 if (spanLength > 0) {
2015 align = spans[spanLength-1].getAlignment();
2016 }
2017 }
2018
2019 return align;
2020 }
2021
2022 /**
2023 * Get the left edge of the specified paragraph, inset by left margins.
2024 */
2025 public final int getParagraphLeft(int line) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002026 int left = 0;
Doug Feltc982f602010-05-25 11:51:40 -07002027 int dir = getParagraphDirection(line);
2028 if (dir == DIR_RIGHT_TO_LEFT || !mSpannedText) {
2029 return left; // leading margin has no impact, or no styles
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002030 }
Doug Feltc982f602010-05-25 11:51:40 -07002031 return getParagraphLeadingMargin(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002032 }
2033
2034 /**
2035 * Get the right edge of the specified paragraph, inset by right margins.
2036 */
2037 public final int getParagraphRight(int line) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002038 int right = mWidth;
Doug Feltc982f602010-05-25 11:51:40 -07002039 int dir = getParagraphDirection(line);
2040 if (dir == DIR_LEFT_TO_RIGHT || !mSpannedText) {
2041 return right; // leading margin has no impact, or no styles
2042 }
2043 return right - getParagraphLeadingMargin(line);
2044 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002045
Doug Feltc982f602010-05-25 11:51:40 -07002046 /**
2047 * Returns the effective leading margin (unsigned) for this line,
2048 * taking into account LeadingMarginSpan and LeadingMarginSpan2.
2049 * @param line the line index
2050 * @return the leading margin of this line
2051 */
2052 private int getParagraphLeadingMargin(int line) {
2053 if (!mSpannedText) {
2054 return 0;
2055 }
2056 Spanned spanned = (Spanned) mText;
Doug Felt0c702b82010-05-14 10:55:42 -07002057
Doug Feltc982f602010-05-25 11:51:40 -07002058 int lineStart = getLineStart(line);
2059 int lineEnd = getLineEnd(line);
Doug Felt0c702b82010-05-14 10:55:42 -07002060 int spanEnd = spanned.nextSpanTransition(lineStart, lineEnd,
Doug Feltc982f602010-05-25 11:51:40 -07002061 LeadingMarginSpan.class);
Eric Fischer74d31ef2010-08-05 15:29:36 -07002062 LeadingMarginSpan[] spans = getParagraphSpans(spanned, lineStart, spanEnd,
Doug Feltc982f602010-05-25 11:51:40 -07002063 LeadingMarginSpan.class);
2064 if (spans.length == 0) {
2065 return 0; // no leading margin span;
2066 }
Doug Felt0c702b82010-05-14 10:55:42 -07002067
Doug Feltc982f602010-05-25 11:51:40 -07002068 int margin = 0;
Doug Felt0c702b82010-05-14 10:55:42 -07002069
Siyamed Sinira273a702017-10-05 11:22:12 -07002070 boolean useFirstLineMargin = lineStart == 0 || spanned.charAt(lineStart - 1) == '\n';
Anish Athalyeab08c6d2014-08-08 12:09:58 -07002071 for (int i = 0; i < spans.length; i++) {
2072 if (spans[i] instanceof LeadingMarginSpan2) {
2073 int spStart = spanned.getSpanStart(spans[i]);
2074 int spanLine = getLineForOffset(spStart);
2075 int count = ((LeadingMarginSpan2) spans[i]).getLeadingMarginLineCount();
2076 // if there is more than one LeadingMarginSpan2, use the count that is greatest
2077 useFirstLineMargin |= line < spanLine + count;
2078 }
2079 }
Doug Feltc982f602010-05-25 11:51:40 -07002080 for (int i = 0; i < spans.length; i++) {
2081 LeadingMarginSpan span = spans[i];
Doug Feltc982f602010-05-25 11:51:40 -07002082 margin += span.getLeadingMargin(useFirstLineMargin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002083 }
2084
Doug Feltc982f602010-05-25 11:51:40 -07002085 return margin;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002086 }
2087
Roozbeh Pournader9a9179d2017-08-29 14:14:28 -07002088 private static float measurePara(TextPaint paint, CharSequence text, int start, int end,
Siyamed Sinir79bf9d12016-05-18 19:57:52 -07002089 TextDirectionHeuristic textDir) {
Seigo Nonaka9d3bd082018-01-11 10:02:12 -08002090 MeasuredParagraph mt = null;
Doug Felte8e45f22010-03-29 14:58:40 -07002091 TextLine tl = TextLine.obtain();
2092 try {
Seigo Nonaka9d3bd082018-01-11 10:02:12 -08002093 mt = MeasuredParagraph.buildForBidi(text, start, end, textDir, mt);
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002094 final char[] chars = mt.getChars();
2095 final int len = chars.length;
2096 final Directions directions = mt.getDirections(0, len);
2097 final int dir = mt.getParagraphDir();
Doug Feltc982f602010-05-25 11:51:40 -07002098 boolean hasTabs = false;
2099 TabStops tabStops = null;
Anish Athalyec14b3ad2014-07-24 18:03:21 -07002100 // leading margins should be taken into account when measuring a paragraph
2101 int margin = 0;
2102 if (text instanceof Spanned) {
2103 Spanned spanned = (Spanned) text;
2104 LeadingMarginSpan[] spans = getParagraphSpans(spanned, start, end,
2105 LeadingMarginSpan.class);
2106 for (LeadingMarginSpan lms : spans) {
2107 margin += lms.getLeadingMargin(true);
2108 }
2109 }
Doug Feltc982f602010-05-25 11:51:40 -07002110 for (int i = 0; i < len; ++i) {
2111 if (chars[i] == '\t') {
2112 hasTabs = true;
2113 if (text instanceof Spanned) {
2114 Spanned spanned = (Spanned) text;
Doug Felt0c702b82010-05-14 10:55:42 -07002115 int spanEnd = spanned.nextSpanTransition(start, end,
Doug Feltc982f602010-05-25 11:51:40 -07002116 TabStopSpan.class);
Eric Fischer74d31ef2010-08-05 15:29:36 -07002117 TabStopSpan[] spans = getParagraphSpans(spanned, start, spanEnd,
Doug Feltc982f602010-05-25 11:51:40 -07002118 TabStopSpan.class);
2119 if (spans.length > 0) {
2120 tabStops = new TabStops(TAB_INCREMENT, spans);
2121 }
2122 }
2123 break;
2124 }
2125 }
Mihai Popace642dc2018-05-24 14:25:11 +01002126 tl.set(paint, text, start, end, dir, directions, hasTabs, tabStops,
2127 0 /* ellipsisStart */, 0 /* ellipsisEnd */);
Siyamed Sinir79bf9d12016-05-18 19:57:52 -07002128 return margin + Math.abs(tl.metrics(null));
Doug Felte8e45f22010-03-29 14:58:40 -07002129 } finally {
2130 TextLine.recycle(tl);
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002131 if (mt != null) {
2132 mt.recycle();
2133 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002134 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002135 }
2136
Doug Felt71b8dd72010-02-16 17:27:09 -08002137 /**
Doug Feltc982f602010-05-25 11:51:40 -07002138 * @hide
2139 */
Seigo Nonaka32afe262018-05-16 22:05:27 -07002140 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
2141 public static class TabStops {
Doug Feltc982f602010-05-25 11:51:40 -07002142 private int[] mStops;
2143 private int mNumStops;
2144 private int mIncrement;
Doug Felt0c702b82010-05-14 10:55:42 -07002145
Seigo Nonaka32afe262018-05-16 22:05:27 -07002146 public TabStops(int increment, Object[] spans) {
Doug Feltc982f602010-05-25 11:51:40 -07002147 reset(increment, spans);
2148 }
Doug Felt0c702b82010-05-14 10:55:42 -07002149
Doug Feltc982f602010-05-25 11:51:40 -07002150 void reset(int increment, Object[] spans) {
2151 this.mIncrement = increment;
2152
2153 int ns = 0;
2154 if (spans != null) {
2155 int[] stops = this.mStops;
2156 for (Object o : spans) {
2157 if (o instanceof TabStopSpan) {
2158 if (stops == null) {
2159 stops = new int[10];
2160 } else if (ns == stops.length) {
2161 int[] nstops = new int[ns * 2];
2162 for (int i = 0; i < ns; ++i) {
2163 nstops[i] = stops[i];
2164 }
2165 stops = nstops;
2166 }
2167 stops[ns++] = ((TabStopSpan) o).getTabStop();
2168 }
2169 }
2170 if (ns > 1) {
2171 Arrays.sort(stops, 0, ns);
2172 }
2173 if (stops != this.mStops) {
2174 this.mStops = stops;
2175 }
2176 }
2177 this.mNumStops = ns;
2178 }
Doug Felt0c702b82010-05-14 10:55:42 -07002179
Doug Feltc982f602010-05-25 11:51:40 -07002180 float nextTab(float h) {
2181 int ns = this.mNumStops;
2182 if (ns > 0) {
2183 int[] stops = this.mStops;
2184 for (int i = 0; i < ns; ++i) {
2185 int stop = stops[i];
2186 if (stop > h) {
2187 return stop;
2188 }
2189 }
2190 }
2191 return nextDefaultStop(h, mIncrement);
2192 }
2193
2194 public static float nextDefaultStop(float h, int inc) {
2195 return ((int) ((h + inc) / inc)) * inc;
2196 }
2197 }
Doug Felt0c702b82010-05-14 10:55:42 -07002198
Doug Feltc982f602010-05-25 11:51:40 -07002199 /**
Doug Felt71b8dd72010-02-16 17:27:09 -08002200 * Returns the position of the next tab stop after h on the line.
2201 *
2202 * @param text the text
2203 * @param start start of the line
2204 * @param end limit of the line
2205 * @param h the current horizontal offset
2206 * @param tabs the tabs, can be null. If it is null, any tabs in effect
2207 * on the line will be used. If there are no tabs, a default offset
2208 * will be used to compute the tab stop.
2209 * @return the offset of the next tab stop.
2210 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002211 /* package */ static float nextTab(CharSequence text, int start, int end,
2212 float h, Object[] tabs) {
2213 float nh = Float.MAX_VALUE;
2214 boolean alltabs = false;
2215
2216 if (text instanceof Spanned) {
2217 if (tabs == null) {
Eric Fischer74d31ef2010-08-05 15:29:36 -07002218 tabs = getParagraphSpans((Spanned) text, start, end, TabStopSpan.class);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002219 alltabs = true;
2220 }
2221
2222 for (int i = 0; i < tabs.length; i++) {
2223 if (!alltabs) {
2224 if (!(tabs[i] instanceof TabStopSpan))
2225 continue;
2226 }
2227
2228 int where = ((TabStopSpan) tabs[i]).getTabStop();
2229
2230 if (where < nh && where > h)
2231 nh = where;
2232 }
2233
2234 if (nh != Float.MAX_VALUE)
2235 return nh;
2236 }
2237
2238 return ((int) ((h + TAB_INCREMENT) / TAB_INCREMENT)) * TAB_INCREMENT;
2239 }
2240
2241 protected final boolean isSpanned() {
2242 return mSpannedText;
2243 }
2244
Eric Fischer74d31ef2010-08-05 15:29:36 -07002245 /**
2246 * Returns the same as <code>text.getSpans()</code>, except where
2247 * <code>start</code> and <code>end</code> are the same and are not
2248 * at the very beginning of the text, in which case an empty array
2249 * is returned instead.
2250 * <p>
2251 * This is needed because of the special case that <code>getSpans()</code>
2252 * on an empty range returns the spans adjacent to that range, which is
2253 * primarily for the sake of <code>TextWatchers</code> so they will get
2254 * notifications when text goes from empty to non-empty. But it also
2255 * has the unfortunate side effect that if the text ends with an empty
2256 * paragraph, that paragraph accidentally picks up the styles of the
2257 * preceding paragraph (even though those styles will not be picked up
2258 * by new text that is inserted into the empty paragraph).
2259 * <p>
2260 * The reason it just checks whether <code>start</code> and <code>end</code>
2261 * is the same is that the only time a line can contain 0 characters
2262 * is if it is the final paragraph of the Layout; otherwise any line will
2263 * contain at least one printing or newline character. The reason for the
2264 * additional check if <code>start</code> is greater than 0 is that
2265 * if the empty paragraph is the entire content of the buffer, paragraph
2266 * styles that are already applied to the buffer will apply to text that
2267 * is inserted into it.
2268 */
Gilles Debunneeca5b732012-04-25 18:48:42 -07002269 /* package */static <T> T[] getParagraphSpans(Spanned text, int start, int end, Class<T> type) {
Eric Fischer74d31ef2010-08-05 15:29:36 -07002270 if (start == end && start > 0) {
Gilles Debunne6c488de2012-03-01 16:20:35 -08002271 return ArrayUtils.emptyArray(type);
Eric Fischer74d31ef2010-08-05 15:29:36 -07002272 }
2273
Siyamed Sinirfa05ba02016-01-12 10:54:43 -08002274 if(text instanceof SpannableStringBuilder) {
2275 return ((SpannableStringBuilder) text).getSpans(start, end, type, false);
2276 } else {
2277 return text.getSpans(start, end, type);
2278 }
Eric Fischer74d31ef2010-08-05 15:29:36 -07002279 }
2280
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002281 private void ellipsize(int start, int end, int line,
Fabrice Di Meglio8d44fff2012-06-13 15:45:38 -07002282 char[] dest, int destoff, TextUtils.TruncateAt method) {
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002283 final int ellipsisCount = getEllipsisCount(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002284 if (ellipsisCount == 0) {
2285 return;
2286 }
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002287 final int ellipsisStart = getEllipsisStart(line);
2288 final int lineStart = getLineStart(line);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002289
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002290 final String ellipsisString = TextUtils.getEllipsisString(method);
2291 final int ellipsisStringLen = ellipsisString.length();
Roozbeh Pournader1051bbe2017-07-25 13:52:57 -07002292 // Use the ellipsis string only if there are that at least as many characters to replace.
2293 final boolean useEllipsisString = ellipsisCount >= ellipsisStringLen;
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002294 for (int i = 0; i < ellipsisCount; i++) {
2295 final char c;
Roozbeh Pournader1051bbe2017-07-25 13:52:57 -07002296 if (useEllipsisString && i < ellipsisStringLen) {
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002297 c = ellipsisString.charAt(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002298 } else {
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002299 c = TextUtils.ELLIPSIS_FILLER;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002300 }
2301
Roozbeh Pournader9ea756f2017-07-25 11:20:29 -07002302 final int a = i + ellipsisStart + lineStart;
2303 if (start <= a && a < end) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002304 dest[destoff + a - start] = c;
2305 }
2306 }
2307 }
2308
2309 /**
2310 * Stores information about bidirectional (left-to-right or right-to-left)
Doug Felt9f7a4442010-03-01 12:45:56 -08002311 * text within the layout of a line.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002312 */
2313 public static class Directions {
Siyamed Sinired09ae12016-02-16 14:36:26 -08002314 /**
Petar Šegina7c31d5c2017-09-25 12:19:28 +01002315 * Directions represents directional runs within a line of text. Runs are pairs of ints
2316 * listed in visual order, starting from the leading margin. The first int of each pair is
2317 * the offset from the first character of the line to the start of the run. The second int
2318 * represents both the length and level of the run. The length is in the lower bits,
2319 * accessed by masking with RUN_LENGTH_MASK. The level is in the higher bits, accessed by
2320 * shifting by RUN_LEVEL_SHIFT and masking by RUN_LEVEL_MASK. To simply test for an RTL
2321 * direction, test the bit using RUN_RTL_FLAG, if set then the direction is rtl.
Siyamed Sinired09ae12016-02-16 14:36:26 -08002322 * @hide
2323 */
2324 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
2325 public int[] mDirections;
2326
2327 /**
2328 * @hide
2329 */
2330 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
2331 public Directions(int[] dirs) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002332 mDirections = dirs;
2333 }
2334 }
2335
2336 /**
2337 * Return the offset of the first character to be ellipsized away,
2338 * relative to the start of the line. (So 0 if the beginning of the
2339 * line is ellipsized, not getLineStart().)
2340 */
2341 public abstract int getEllipsisStart(int line);
Doug Felte8e45f22010-03-29 14:58:40 -07002342
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002343 /**
2344 * Returns the number of characters to be ellipsized away, or 0 if
2345 * no ellipsis is to take place.
2346 */
2347 public abstract int getEllipsisCount(int line);
2348
2349 /* package */ static class Ellipsizer implements CharSequence, GetChars {
2350 /* package */ CharSequence mText;
2351 /* package */ Layout mLayout;
2352 /* package */ int mWidth;
2353 /* package */ TextUtils.TruncateAt mMethod;
2354
2355 public Ellipsizer(CharSequence s) {
2356 mText = s;
2357 }
2358
2359 public char charAt(int off) {
2360 char[] buf = TextUtils.obtain(1);
2361 getChars(off, off + 1, buf, 0);
2362 char ret = buf[0];
2363
2364 TextUtils.recycle(buf);
2365 return ret;
2366 }
2367
2368 public void getChars(int start, int end, char[] dest, int destoff) {
2369 int line1 = mLayout.getLineForOffset(start);
2370 int line2 = mLayout.getLineForOffset(end);
2371
2372 TextUtils.getChars(mText, start, end, dest, destoff);
2373
2374 for (int i = line1; i <= line2; i++) {
Fabrice Di Meglio8d44fff2012-06-13 15:45:38 -07002375 mLayout.ellipsize(start, end, i, dest, destoff, mMethod);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002376 }
2377 }
2378
2379 public int length() {
2380 return mText.length();
2381 }
Doug Felt9f7a4442010-03-01 12:45:56 -08002382
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002383 public CharSequence subSequence(int start, int end) {
2384 char[] s = new char[end - start];
2385 getChars(start, end, s, 0);
2386 return new String(s);
2387 }
2388
Gilles Debunne162bf0f2010-11-16 16:23:53 -08002389 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002390 public String toString() {
2391 char[] s = new char[length()];
2392 getChars(0, length(), s, 0);
2393 return new String(s);
2394 }
2395
2396 }
2397
Gilles Debunne6c488de2012-03-01 16:20:35 -08002398 /* package */ static class SpannedEllipsizer extends Ellipsizer implements Spanned {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002399 private Spanned mSpanned;
2400
2401 public SpannedEllipsizer(CharSequence display) {
2402 super(display);
2403 mSpanned = (Spanned) display;
2404 }
2405
2406 public <T> T[] getSpans(int start, int end, Class<T> type) {
2407 return mSpanned.getSpans(start, end, type);
2408 }
2409
2410 public int getSpanStart(Object tag) {
2411 return mSpanned.getSpanStart(tag);
2412 }
2413
2414 public int getSpanEnd(Object tag) {
2415 return mSpanned.getSpanEnd(tag);
2416 }
2417
2418 public int getSpanFlags(Object tag) {
2419 return mSpanned.getSpanFlags(tag);
2420 }
2421
Gilles Debunne6c488de2012-03-01 16:20:35 -08002422 @SuppressWarnings("rawtypes")
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002423 public int nextSpanTransition(int start, int limit, Class type) {
2424 return mSpanned.nextSpanTransition(start, limit, type);
2425 }
2426
Gilles Debunne162bf0f2010-11-16 16:23:53 -08002427 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002428 public CharSequence subSequence(int start, int end) {
2429 char[] s = new char[end - start];
2430 getChars(start, end, s, 0);
2431
2432 SpannableString ss = new SpannableString(new String(s));
2433 TextUtils.copySpansFrom(mSpanned, start, end, Object.class, ss, 0);
2434 return ss;
2435 }
2436 }
2437
2438 private CharSequence mText;
Mathew Inwoodefeab842018-08-14 15:21:30 +01002439 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002440 private TextPaint mPaint;
Roozbeh Pournaderb1f03652017-08-08 15:49:01 -07002441 private TextPaint mWorkPaint = new TextPaint();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002442 private int mWidth;
2443 private Alignment mAlignment = Alignment.ALIGN_NORMAL;
2444 private float mSpacingMult;
2445 private float mSpacingAdd;
Romain Guyc4d8eb62010-08-18 20:48:33 -07002446 private static final Rect sTempRect = new Rect();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002447 private boolean mSpannedText;
Doug Feltcb3791202011-07-07 11:57:48 -07002448 private TextDirectionHeuristic mTextDir;
Gilles Debunneeca5b732012-04-25 18:48:42 -07002449 private SpanSet<LineBackgroundSpan> mLineBackgroundSpans;
Seigo Nonaka4b4730d2017-03-31 09:42:16 -07002450 private int mJustificationMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002451
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002452 /** @hide */
Jeff Sharkeyce8db992017-12-13 20:05:05 -07002453 @IntDef(prefix = { "DIR_" }, value = {
2454 DIR_LEFT_TO_RIGHT,
2455 DIR_RIGHT_TO_LEFT
2456 })
Seigo Nonakaf1644f72017-11-27 22:09:49 -08002457 @Retention(RetentionPolicy.SOURCE)
2458 public @interface Direction {}
2459
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002460 public static final int DIR_LEFT_TO_RIGHT = 1;
2461 public static final int DIR_RIGHT_TO_LEFT = -1;
Doug Felt9f7a4442010-03-01 12:45:56 -08002462
Doug Felt20178d62010-02-22 13:39:01 -08002463 /* package */ static final int DIR_REQUEST_LTR = 1;
2464 /* package */ static final int DIR_REQUEST_RTL = -1;
Mathew Inwoodefeab842018-08-14 15:21:30 +01002465 @UnsupportedAppUsage
Doug Felt20178d62010-02-22 13:39:01 -08002466 /* package */ static final int DIR_REQUEST_DEFAULT_LTR = 2;
2467 /* package */ static final int DIR_REQUEST_DEFAULT_RTL = -2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002468
Doug Felt9f7a4442010-03-01 12:45:56 -08002469 /* package */ static final int RUN_LENGTH_MASK = 0x03ffffff;
2470 /* package */ static final int RUN_LEVEL_SHIFT = 26;
2471 /* package */ static final int RUN_LEVEL_MASK = 0x3f;
2472 /* package */ static final int RUN_RTL_FLAG = 1 << RUN_LEVEL_SHIFT;
2473
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002474 public enum Alignment {
2475 ALIGN_NORMAL,
2476 ALIGN_OPPOSITE,
2477 ALIGN_CENTER,
Doug Feltc0ccf0c2011-06-23 16:13:18 -07002478 /** @hide */
Mathew Inwoodefeab842018-08-14 15:21:30 +01002479 @UnsupportedAppUsage
Doug Feltc0ccf0c2011-06-23 16:13:18 -07002480 ALIGN_LEFT,
2481 /** @hide */
Mathew Inwoodefeab842018-08-14 15:21:30 +01002482 @UnsupportedAppUsage
Doug Feltc0ccf0c2011-06-23 16:13:18 -07002483 ALIGN_RIGHT,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002484 }
2485
2486 private static final int TAB_INCREMENT = 20;
2487
Siyamed Sinired09ae12016-02-16 14:36:26 -08002488 /** @hide */
2489 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
Mathew Inwoodefeab842018-08-14 15:21:30 +01002490 @UnsupportedAppUsage
Siyamed Sinired09ae12016-02-16 14:36:26 -08002491 public static final Directions DIRS_ALL_LEFT_TO_RIGHT =
Doug Felt9f7a4442010-03-01 12:45:56 -08002492 new Directions(new int[] { 0, RUN_LENGTH_MASK });
Siyamed Sinired09ae12016-02-16 14:36:26 -08002493
2494 /** @hide */
2495 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
Mathew Inwoodefeab842018-08-14 15:21:30 +01002496 @UnsupportedAppUsage
Siyamed Sinired09ae12016-02-16 14:36:26 -08002497 public static final Directions DIRS_ALL_RIGHT_TO_LEFT =
Doug Felt9f7a4442010-03-01 12:45:56 -08002498 new Directions(new int[] { 0, RUN_LENGTH_MASK | RUN_RTL_FLAG });
Gilles Debunne0a4db3c2011-01-14 12:12:04 -08002499
Petar Šeginafb748b32017-08-07 12:37:52 +01002500 /** @hide */
Petar Šeginab92c5392017-09-06 15:25:05 +01002501 @Retention(RetentionPolicy.SOURCE)
Jeff Sharkeyce8db992017-12-13 20:05:05 -07002502 @IntDef(prefix = { "TEXT_SELECTION_LAYOUT_" }, value = {
2503 TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT,
2504 TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT
2505 })
Petar Šegina3a92fb62017-09-07 21:03:24 +01002506 public @interface TextSelectionLayout {}
2507
2508 /** @hide */
2509 public static final int TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT = 0;
2510 /** @hide */
2511 public static final int TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT = 1;
Petar Šeginab92c5392017-09-06 15:25:05 +01002512
2513 /** @hide */
Petar Šeginafb748b32017-08-07 12:37:52 +01002514 @FunctionalInterface
Petar Šeginab92c5392017-09-06 15:25:05 +01002515 public interface SelectionRectangleConsumer {
Petar Šeginafb748b32017-08-07 12:37:52 +01002516 /**
2517 * Performs this operation on the given rectangle.
2518 *
2519 * @param left the left edge of the rectangle
2520 * @param top the top edge of the rectangle
2521 * @param right the right edge of the rectangle
2522 * @param bottom the bottom edge of the rectangle
Petar Šeginab92c5392017-09-06 15:25:05 +01002523 * @param textSelectionLayout the layout (RTL or LTR) of the text covered by this
2524 * selection rectangle
Petar Šeginafb748b32017-08-07 12:37:52 +01002525 */
Petar Šeginab92c5392017-09-06 15:25:05 +01002526 void accept(float left, float top, float right, float bottom,
2527 @TextSelectionLayout int textSelectionLayout);
Petar Šeginafb748b32017-08-07 12:37:52 +01002528 }
2529
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002530}