mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
74 lines
2.3 KiB
Java
74 lines
2.3 KiB
Java
package org.thoughtcrime.securesms.util;
|
|
|
|
import android.annotation.TargetApi;
|
|
import android.content.ClipData;
|
|
import android.content.Context;
|
|
import androidx.annotation.ColorInt;
|
|
import androidx.annotation.NonNull;
|
|
import android.text.TextPaint;
|
|
import android.text.style.URLSpan;
|
|
import android.view.View;
|
|
import android.widget.Toast;
|
|
|
|
import network.loki.messenger.R;
|
|
|
|
public class LongClickCopySpan extends URLSpan {
|
|
private static final String PREFIX_MAILTO = "mailto:";
|
|
private static final String PREFIX_TEL = "tel:";
|
|
|
|
private boolean isHighlighted;
|
|
@ColorInt
|
|
private int highlightColor;
|
|
|
|
public LongClickCopySpan(String url) {
|
|
super(url);
|
|
}
|
|
|
|
void onLongClick(View widget) {
|
|
Context context = widget.getContext();
|
|
String preparedUrl = prepareUrl(getURL());
|
|
copyUrl(context, preparedUrl);
|
|
Toast.makeText(context,
|
|
context.getString(R.string.ConversationItem_copied_text, preparedUrl), Toast.LENGTH_SHORT).show();
|
|
}
|
|
|
|
@Override
|
|
public void updateDrawState(@NonNull TextPaint ds) {
|
|
super.updateDrawState(ds);
|
|
ds.bgColor = highlightColor;
|
|
ds.setUnderlineText(!isHighlighted);
|
|
}
|
|
|
|
void setHighlighted(boolean highlighted, @ColorInt int highlightColor) {
|
|
this.isHighlighted = highlighted;
|
|
this.highlightColor = highlightColor;
|
|
}
|
|
|
|
private void copyUrl(Context context, String url) {
|
|
int sdk = android.os.Build.VERSION.SDK_INT;
|
|
if (sdk < android.os.Build.VERSION_CODES.HONEYCOMB) {
|
|
@SuppressWarnings("deprecation") android.text.ClipboardManager clipboard =
|
|
(android.text.ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
|
|
clipboard.setText(url);
|
|
} else {
|
|
copyUriSdk11(context, url);
|
|
}
|
|
}
|
|
|
|
@TargetApi(android.os.Build.VERSION_CODES.HONEYCOMB)
|
|
private void copyUriSdk11(Context context, String url) {
|
|
android.content.ClipboardManager clipboard =
|
|
(android.content.ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
|
|
ClipData clip = ClipData.newPlainText(context.getString(R.string.app_name), url);
|
|
clipboard.setPrimaryClip(clip);
|
|
}
|
|
|
|
private String prepareUrl(String url) {
|
|
if (url.startsWith(PREFIX_MAILTO)) {
|
|
return url.substring(PREFIX_MAILTO.length());
|
|
} else if (url.startsWith(PREFIX_TEL)) {
|
|
return url.substring(PREFIX_TEL.length());
|
|
}
|
|
return url;
|
|
}
|
|
}
|