mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-23 21:36:07 +03:00
#776 App crash when selected - add logging
This commit is contained in:
parent
15208b5288
commit
fb6a0fd830
1 changed files with 4 additions and 0 deletions
|
@ -70,6 +70,7 @@ public class ContextBasedFormattingCallback implements ActionMode.Callback {
|
|||
CharSequence text = editText.getText();
|
||||
int originalCursorPosition = editText.getSelectionStart();
|
||||
int startOfLine = getStartOfLine(text, originalCursorPosition);
|
||||
Log.i(TAG, "Inserting checkbox at position " + startOfLine);
|
||||
CharSequence part1 = text.subSequence(0, startOfLine);
|
||||
CharSequence part2 = text.subSequence(startOfLine, text.length());
|
||||
editText.setText(TextUtils.concat(part1, CHECKBOX_UNCHECKED_MINUS_TRAILING_SPACE, part2));
|
||||
|
@ -82,14 +83,17 @@ public class ContextBasedFormattingCallback implements ActionMode.Callback {
|
|||
int end = start;
|
||||
boolean textToFormatIsLink = TextUtils.indexOf(editText.getText().subSequence(start, end), "http") == 0;
|
||||
if (textToFormatIsLink) {
|
||||
Log.i(TAG, "Inserting link description for position " + start + " to " + end);
|
||||
ssb.insert(end, ")");
|
||||
ssb.insert(start, "[](");
|
||||
} else {
|
||||
String clipboardURL = getClipboardURLorNull(editText.getContext());
|
||||
if (clipboardURL != null) {
|
||||
Log.i(TAG, "Inserting link from clipboard at position " + start + " to " + end + ": " + clipboardURL);
|
||||
ssb.insert(end, "](" + clipboardURL + ")");
|
||||
end += clipboardURL.length();
|
||||
} else {
|
||||
Log.i(TAG, "Inserting empty link for position " + start + " to " + end);
|
||||
ssb.insert(end, "]()");
|
||||
}
|
||||
ssb.insert(start, "[");
|
||||
|
|
Loading…
Reference in a new issue