am 37deb112
: Fix IndexOutOfBoundsException
* commit '37deb112c727dfed5e94d054cf5f00f5d60c8120': Fix IndexOutOfBoundsException
This commit is contained in:
commit
263749f2dc
1 changed files with 8 additions and 4 deletions
|
@ -332,8 +332,10 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
|
|||
|
||||
@Override
|
||||
public boolean onLongClick(View view) {
|
||||
int index = (Integer) view.getTag();
|
||||
CharSequence word = mSuggestions.getWord(index);
|
||||
final int index = (Integer) view.getTag();
|
||||
if (index >= mSuggestions.size())
|
||||
return true;
|
||||
final CharSequence word = mSuggestions.getWord(index);
|
||||
if (word.length() < 2)
|
||||
return false;
|
||||
addToDictionary(word);
|
||||
|
@ -342,8 +344,10 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
|
|||
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
int index = (Integer) view.getTag();
|
||||
CharSequence word = mSuggestions.getWord(index);
|
||||
final int index = (Integer) view.getTag();
|
||||
if (index >= mSuggestions.size())
|
||||
return;
|
||||
final CharSequence word = mSuggestions.getWord(index);
|
||||
if (mShowingAddToDictionary && index == 0) {
|
||||
addToDictionary(word);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue