我正在尝试在单击按钮时显示MultiAutoCompleteTextView的上下文菜单(复制粘贴选项)。 这是我尝试但没有奏效的。
mButton.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
// the below line didn't work either.
//mAutoCompleteTextView.showContextMenu();
mAutoCompleteTextView.performLongClick();
return true;
}
});
有没有办法显示上下文菜单?当我长按MultiAutoCompleteTextView时会显示菜单,但是当我长时间点击活动上的任何其他视图时,我需要实现相同的功能。