正如标题所说,我想知道如何知道 TextView 中的长按文本。
caption.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Log.d("log", "caption clicked");
String text = ((TextView)v).getText().toString();
Log.d("log", "1: " + text);
int start = ((TextView)v).getSelectionStart();
Log.d("log", "2: " + start);
int end = ((TextView)v).getSelectionEnd();
Log.d("log", "3: " + end);
Log.d("log", "selection: " + text.substring(start, end));
return true;
}
});
在这里,开始和结束变量都得到 -1。它不应该返回我长按的文本索引吗?有没有其他方法可以知道textView中的长按文本?