ActionbarSherlock: Long-click on action item show

2020-05-28 10:36发布

问题:

When an action item is long-clicked, a Toast without text is show below the action item. Can I disable the Toast? Thanks you.

回答1:

If you omit a title or specify that the action item should be displayed with text then long-pressing will not toast. Otherwise the toast adds clarification of what each action item represents.



回答2:

Using this answer to get the action bar view: https://stackoverflow.com/a/21125631/555914 I used this to disable the toast:

View actionBar = AppUtils.getActionBarView(getActivity());
        if(actionBar!=null) {
            View item = actionBar.findViewById(id);
            if(item!=null) {
                item.setOnLongClickListener(null);
            }
        }

Although I do not recommend disabling this functionality but sometimes designers want something for esthetic reasons...