正如标题所示,有没有办法将 ActionMode Done Button 对齐在右侧而不是左侧?或者我应该隐藏它并添加一个菜单按钮并管理它的 onClick

最佳答案

在你调用 "startActionMode"之后,你可以找到 actionMode 的 View ,并设置它的布局方向(或者调查它然后做你想做的):

// <= call "startActionMode" here
final View actionModeView = findViewById(R.id.action_mode_bar);
if (actionModeView != null)
   actionModeView.setLayoutDirection(View.LAYOUT_DIRECTION_LTR);

我知道它至少适用于 Toolbar(当被设置为 actionBar 时),使用支持库。

10-08 17:24