public static void showActionsMenu() {
   RelativeLayout actionsButton = (RelativeLayout) mShell.findViewById(R.id.action_button);
   RelativeLayout touchInterceptor = (RelativeLayout) mShell.findViewById(R.id.touch_interceptor);
   View actionsMenu = mShell.getActionMenuView();
   actionsButton.setOnClickListener(
       new UiMenuOnClickListener(mShell, actionsMenu, touchInterceptor, 2));
   actionsButton.setVisibility(View.VISIBLE);
 }