brought back 'copy to clipboard' and 'quote' context menu options
This commit is contained in:
parent
49b4153fb5
commit
e5210bbaa0
|
@ -555,28 +555,7 @@ public class ConversationFragment extends Fragment implements EditMessage.Keyboa
|
|||
|
||||
@Override
|
||||
public void onQuote(String text) {
|
||||
if (mEditMessage.isEnabled()) {
|
||||
text = text.replaceAll("(\n *){2,}", "\n").replaceAll("(^|\n)", "$1> ").replaceAll("\n$", "");
|
||||
Editable editable = mEditMessage.getEditableText();
|
||||
int position = mEditMessage.getSelectionEnd();
|
||||
if (position == -1) position = editable.length();
|
||||
if (position > 0 && editable.charAt(position - 1) != '\n') {
|
||||
editable.insert(position++, "\n");
|
||||
}
|
||||
editable.insert(position, text);
|
||||
position += text.length();
|
||||
editable.insert(position++, "\n");
|
||||
if (position < editable.length() && editable.charAt(position) != '\n') {
|
||||
editable.insert(position, "\n");
|
||||
}
|
||||
mEditMessage.setSelection(position);
|
||||
mEditMessage.requestFocus();
|
||||
InputMethodManager inputMethodManager = (InputMethodManager) getActivity()
|
||||
.getSystemService(Context.INPUT_METHOD_SERVICE);
|
||||
if (inputMethodManager != null) {
|
||||
inputMethodManager.showSoftInput(mEditMessage, InputMethodManager.SHOW_IMPLICIT);
|
||||
}
|
||||
}
|
||||
quoteText(text);
|
||||
}
|
||||
});
|
||||
messagesView.setAdapter(messageListAdapter);
|
||||
|
@ -586,6 +565,35 @@ public class ConversationFragment extends Fragment implements EditMessage.Keyboa
|
|||
return view;
|
||||
}
|
||||
|
||||
private void quoteText(String text) {
|
||||
if (mEditMessage.isEnabled()) {
|
||||
text = text.replaceAll("(\n *){2,}", "\n").replaceAll("(^|\n)", "$1> ").replaceAll("\n$", "");
|
||||
Editable editable = mEditMessage.getEditableText();
|
||||
int position = mEditMessage.getSelectionEnd();
|
||||
if (position == -1) position = editable.length();
|
||||
if (position > 0 && editable.charAt(position - 1) != '\n') {
|
||||
editable.insert(position++, "\n");
|
||||
}
|
||||
editable.insert(position, text);
|
||||
position += text.length();
|
||||
editable.insert(position++, "\n");
|
||||
if (position < editable.length() && editable.charAt(position) != '\n') {
|
||||
editable.insert(position, "\n");
|
||||
}
|
||||
mEditMessage.setSelection(position);
|
||||
mEditMessage.requestFocus();
|
||||
InputMethodManager inputMethodManager = (InputMethodManager) getActivity()
|
||||
.getSystemService(Context.INPUT_METHOD_SERVICE);
|
||||
if (inputMethodManager != null) {
|
||||
inputMethodManager.showSoftInput(mEditMessage, InputMethodManager.SHOW_IMPLICIT);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void quoteMessage(Message message) {
|
||||
quoteText(message.getMergedBody().toString());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
|
||||
synchronized (this.messageList) {
|
||||
|
@ -607,9 +615,12 @@ public class ConversationFragment extends Fragment implements EditMessage.Keyboa
|
|||
final boolean treatAsFile = m.getType() != Message.TYPE_TEXT
|
||||
&& m.getType() != Message.TYPE_PRIVATE
|
||||
&& t == null;
|
||||
final boolean encrypted = m.getEncryption() == Message.ENCRYPTION_DECRYPTION_FAILED
|
||||
|| m.getEncryption() == Message.ENCRYPTION_PGP;
|
||||
activity.getMenuInflater().inflate(R.menu.message_context, menu);
|
||||
menu.setHeaderTitle(R.string.message_options);
|
||||
MenuItem selectText = menu.findItem(R.id.select_text);
|
||||
MenuItem copyMessage = menu.findItem(R.id.copy_message);
|
||||
MenuItem quoteMessage = menu.findItem(R.id.quote_message);
|
||||
MenuItem retryDecryption = menu.findItem(R.id.retry_decryption);
|
||||
MenuItem correctMessage = menu.findItem(R.id.correct_message);
|
||||
MenuItem shareWith = menu.findItem(R.id.share_with);
|
||||
|
@ -619,8 +630,9 @@ public class ConversationFragment extends Fragment implements EditMessage.Keyboa
|
|||
MenuItem cancelTransmission = menu.findItem(R.id.cancel_transmission);
|
||||
MenuItem deleteFile = menu.findItem(R.id.delete_file);
|
||||
MenuItem showErrorMessage = menu.findItem(R.id.show_error_message);
|
||||
if (!treatAsFile && !m.isGeoUri() && !m.treatAsDownloadable()) {
|
||||
selectText.setVisible(ListSelectionManager.isSupported());
|
||||
if (!treatAsFile && !encrypted && !m.isGeoUri() && !m.treatAsDownloadable()) {
|
||||
copyMessage.setVisible(true);
|
||||
quoteMessage.setVisible(true);
|
||||
}
|
||||
if (m.getEncryption() == Message.ENCRYPTION_DECRYPTION_FAILED) {
|
||||
retryDecryption.setVisible(true);
|
||||
|
@ -671,12 +683,15 @@ public class ConversationFragment extends Fragment implements EditMessage.Keyboa
|
|||
case R.id.share_with:
|
||||
shareWith(selectedMessage);
|
||||
return true;
|
||||
case R.id.select_text:
|
||||
selectText(selectedMessage);
|
||||
return true;
|
||||
case R.id.correct_message:
|
||||
correctMessage(selectedMessage);
|
||||
return true;
|
||||
case R.id.copy_message:
|
||||
copyMessage(selectedMessage);
|
||||
return true;
|
||||
case R.id.quote_message:
|
||||
quoteMessage(selectedMessage);
|
||||
return true;
|
||||
case R.id.send_again:
|
||||
resendMessage(selectedMessage);
|
||||
return true;
|
||||
|
@ -743,23 +758,11 @@ public class ConversationFragment extends Fragment implements EditMessage.Keyboa
|
|||
}
|
||||
}
|
||||
|
||||
private void selectText(Message message) {
|
||||
final int index;
|
||||
synchronized (this.messageList) {
|
||||
index = this.messageList.indexOf(message);
|
||||
private void copyMessage(Message message) {
|
||||
if (activity.copyTextToClipboard(message.getMergedBody().toString(), R.string.message)) {
|
||||
Toast.makeText(activity, R.string.message_copied_to_clipboard, Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
if (index >= 0) {
|
||||
final int first = this.messagesView.getFirstVisiblePosition();
|
||||
final int last = first + this.messagesView.getChildCount();
|
||||
if (index >= first && index < last) {
|
||||
final View view = this.messagesView.getChildAt(index - first);
|
||||
final TextView messageBody = this.messageListAdapter.getMessageBody(view);
|
||||
if (messageBody != null) {
|
||||
ListSelectionManager.startSelection(messageBody);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void deleteFile(Message message) {
|
||||
if (activity.xmppConnectionService.getFileBackend().deleteFile(message)) {
|
||||
|
|
|
@ -194,10 +194,6 @@ public class ListSelectionManager {
|
|||
return SUPPORTED;
|
||||
}
|
||||
|
||||
public static void startSelection(TextView textView) {
|
||||
startSelection(textView, 0, textView.getText().length());
|
||||
}
|
||||
|
||||
public static void startSelection(TextView textView, int start, int end) {
|
||||
final CharSequence text = textView.getText();
|
||||
if (SUPPORTED && start >= 0 && end > start && textView.isTextSelectable() && text instanceof Spannable) {
|
||||
|
|
|
@ -1,14 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<item
|
||||
android:id="@+id/select_text"
|
||||
android:title="@string/select_text"
|
||||
android:visible="false"/>
|
||||
<item
|
||||
android:id="@+id/share_with"
|
||||
android:title="@string/share_with"
|
||||
android:visible="false"/>
|
||||
|
||||
<item
|
||||
android:id="@+id/copy_message"
|
||||
android:title="@string/copy_to_clipboard"
|
||||
android:visible="false"/>
|
||||
<item
|
||||
android:id="@+id/quote_message"
|
||||
android:title="@string/quote"
|
||||
android:visible="false"/>
|
||||
|
||||
<item
|
||||
android:id="@+id/retry_decryption"
|
||||
android:title="@string/retry_decryption"
|
||||
|
|
|
@ -342,7 +342,6 @@
|
|||
<string name="check_x_filesize">Check %s size</string>
|
||||
<string name="check_x_filesize_on_host">Check %1$s size on %2$s</string>
|
||||
<string name="message_options">Message options</string>
|
||||
<string name="select_text">Select text</string>
|
||||
<string name="quote">Quote</string>
|
||||
<string name="copy_original_url">Copy original URL</string>
|
||||
<string name="send_again">Send again</string>
|
||||
|
@ -724,4 +723,7 @@
|
|||
<string name="certificate_does_not_contain_jid">Certificate does not contain a Jabber ID</string>
|
||||
<string name="server_info_partial">partial</string>
|
||||
<string name="attach_record_video">Record video</string>
|
||||
<string name="copy_to_clipboard">Copy to clipboard</string>
|
||||
<string name="message_copied_to_clipboard">Message copied to clipboard</string>
|
||||
<string name="message">Message</string>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in New Issue