我们可以在android 2.3中设置EditText的setCustomSelectionActionModeCallback
属性在android 4中我们可以通过实现implements ActionMode.Callback
来使用它,但我们如何在android 2.3中使用它。意味着它在android 2.3中的任何使用示例。
答案 0 :(得分:2)
关于在2.3中实施ActionMode.Callback
接口,您可以使用支持库中的相同ActionMode类和callback。
只需从支持库导入ActionMode和ActionMode.Callback:
android.support.v7.view.ActionMode
android.support.v7.view.ActionMode.Callback