我怎样才能拦截这种事件?
EditText
当用户尝试将一些文本粘贴到我的我知道我可以使用时,我需要添加一些逻辑,TextWatcher
但是这个入口点对我不利,因为我只需要在粘贴的情况下进行拦截,而不是每次用户按下我EditText
时,
我怎样才能拦截这种事件?
EditText
当用户尝试将一些文本粘贴到我的我知道我可以使用时,我需要添加一些逻辑,TextWatcher
但是这个入口点对我不利,因为我只需要在粘贴的情况下进行拦截,而不是每次用户按下我EditText
时,
使用 API 似乎无能为力:android paste event
我深入研究了TextView
(EditText
具有TextView
一些不同配置)的 Android 源代码,发现用于提供剪切/复制/粘贴选项的菜单只是经过修改的ContextMenu
(源代码)。
对于普通的上下文菜单,视图必须创建菜单(source),然后在回调方法(source)中处理交互。
因为处理方法是public
,我们可以简单地通过扩展EditText
和覆盖方法来对不同的动作做出反应来挂钩它。这是一个示例实现:
import android.content.Context;
import android.util.AttributeSet;
import android.widget.EditText;
import android.widget.Toast;
/**
* An EditText, which notifies when something was cut/copied/pasted inside it.
* @author Lukas Knuth
* @version 1.0
*/
public class MonitoringEditText extends EditText {
private final Context context;
/*
Just the constructors to create a new EditText...
*/
public MonitoringEditText(Context context) {
super(context);
this.context = context;
}
public MonitoringEditText(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
}
public MonitoringEditText(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
this.context = context;
}
/**
* <p>This is where the "magic" happens.</p>
* <p>The menu used to cut/copy/paste is a normal ContextMenu, which allows us to
* overwrite the consuming method and react on the different events.</p>
* @see <a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.3_r1/android/widget/TextView.java#TextView.onTextContextMenuItem%28int%29">Original Implementation</a>
*/
@Override
public boolean onTextContextMenuItem(int id) {
// Do your thing:
boolean consumed = super.onTextContextMenuItem(id);
// React:
switch (id){
case android.R.id.cut:
onTextCut();
break;
case android.R.id.paste:
onTextPaste();
break;
case android.R.id.copy:
onTextCopy();
}
return consumed;
}
/**
* Text was cut from this EditText.
*/
public void onTextCut(){
Toast.makeText(context, "Cut!", Toast.LENGTH_SHORT).show();
}
/**
* Text was copied from this EditText.
*/
public void onTextCopy(){
Toast.makeText(context, "Copy!", Toast.LENGTH_SHORT).show();
}
/**
* Text was pasted into the EditText.
*/
public void onTextPaste(){
Toast.makeText(context, "Paste!", Toast.LENGTH_SHORT).show();
}
}
现在,当用户使用剪切/复制/粘贴时,Toast
会显示 a(当然你也可以做其他事情)。
巧妙的是,这适用于 Android 1.5,并且您不需要重新创建上下文菜单(如上面链接的问题中所建议的那样),这将保持平台的不变外观(例如使用 HTC Sense )。
有一个更简单的方法,虽然不是 100% 可靠。
将 TextChangedListener 添加到您的编辑框:
EditText et = (EditText) mView.findViewById(R.id.yourEditText);
et.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (count > 2) toast("text was pasted");
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void afterTextChanged(Editable s) {
}
});
如果文本更改超过 2 个字符,您可以假设它已被粘贴(一些笑脸占用两个字符)。
当然,当用户粘贴 1 或 2 个字符时它不会检测到粘贴,如果文本的更改是由其他东西触发的,它会错误地报告粘贴。
但对于大多数目的,它可以完成工作