Fix IndexOutOfBoundsException
Bug: 4586181 Change-Id: I10a2d1486c9a0d11aa42cf7c6a33ecd70b6918d7main
parent
98275e4512
commit
37deb112c7
|
@ -332,8 +332,10 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onLongClick(View view) {
|
public boolean onLongClick(View view) {
|
||||||
int index = (Integer) view.getTag();
|
final int index = (Integer) view.getTag();
|
||||||
CharSequence word = mSuggestions.getWord(index);
|
if (index >= mSuggestions.size())
|
||||||
|
return true;
|
||||||
|
final CharSequence word = mSuggestions.getWord(index);
|
||||||
if (word.length() < 2)
|
if (word.length() < 2)
|
||||||
return false;
|
return false;
|
||||||
addToDictionary(word);
|
addToDictionary(word);
|
||||||
|
@ -342,8 +344,10 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View view) {
|
public void onClick(View view) {
|
||||||
int index = (Integer) view.getTag();
|
final int index = (Integer) view.getTag();
|
||||||
CharSequence word = mSuggestions.getWord(index);
|
if (index >= mSuggestions.size())
|
||||||
|
return;
|
||||||
|
final CharSequence word = mSuggestions.getWord(index);
|
||||||
if (mShowingAddToDictionary && index == 0) {
|
if (mShowingAddToDictionary && index == 0) {
|
||||||
addToDictionary(word);
|
addToDictionary(word);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue