我需要我的应用程序可以在单击菜单栏后显示文本选择工具栏。我的意思是当我在菜单栏上选择一个项目可能就像这个Menu Bar,之后我的设备会出现像这样的文本选择工具栏 Text Selection Toolbar
有可能吗?请帮我。谢谢。 这是我的代码
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
// Inflate the menu; this adds items to the action bar if it is present.
//add(groupId, itemId, order, name)
menu.add(1, 1, 1, "Copy Text");
menu.add(1, 2, 2, "Exit");
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml
case 1:
//Show text selection toolbar
case 2:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
return true;
default:
break;
}
return super.onOptionsItemSelected(item);
}