OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wordWidth
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
CandidateView.java
243
final int
wordWidth
;
245
wordWidth
= mWordWidth[i];
248
wordWidth
= Math.max(mMinTouchableWidth, (int) textWidth + X_GAP * 2);
249
mWordWidth[i] =
wordWidth
;
254
if (touchX + scrollX >= x && touchX + scrollX < x +
wordWidth
&& !scrolled &&
258
mSelectionHighlight.setBounds(0, bgPadding.top,
wordWidth
, height);
268
canvas.drawText(suggestion, 0, suggestion.length(), x +
wordWidth
/ 2, y, paint);
270
canvas.translate(x +
wordWidth
, 0);
275
canvas.translate(-x -
wordWidth
, 0);
278
x +=
wordWidth
;
[
all
...]
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java
184
final int
wordWidth
= (int) textWidth + X_GAP * 2;
187
mWordWidth[i] =
wordWidth
;
189
if (touchX + scrollX >= x && touchX + scrollX < x +
wordWidth
&& !scrolled) {
192
mSelectionHighlight.setBounds(0, bgPadding.top,
wordWidth
, height);
208
canvas.drawLine(x +
wordWidth
+ 0.5f, bgPadding.top,
209
x +
wordWidth
+ 0.5f, height + 1, paint);
212
x +=
wordWidth
;
Completed in 122 milliseconds