| Chunk |
|---|
| Conflicting content |
|---|
return superResult;
}
<<<<<<< HEAD
if ((mMovement != null || onCheckIsTextEditor()) && mText instanceof Spannable && mLayout != null) {
if (mInsertionPointCursorController != null) {
mInsertionPointCursorController.onTouchEvent(event);
}
if (mSelectionModifierCursorController != null) {
mSelectionModifierCursorController.onTouchEvent(event);
}
=======
if ((mMovement != null || onCheckIsTextEditor()) && isEnabled()
&& mText instanceof Spannable && mLayout != null) {
>>>>>>> 5d919b4387488d2420cb14b4f9ba3fd158efa3cc
boolean handled = false;
// Save previous selection, in case this event is used to show the IME. |
| Solution content |
|---|
return superResult;
}
if ((mMovement != null || onCheckIsTextEditor()) && isEnabled()
&& mText instanceof Spannable && mLayout != null) {
if (mInsertionPointCursorController != null) {
mInsertionPointCursorController.onTouchEvent(event);
}
if (mSelectionModifierCursorController != null) {
mSelectionModifierCursorController.onTouchEvent(event);
}
boolean handled = false;
// Save previous selection, in case this event is used to show the IME. |
| File |
|---|
| TextView.java |
| Developer's decision |
|---|
| Combination |
| Kind of conflict |
|---|
| If statement |