안녕하세요 초보 안드로이드 개발자 입니다.
 
허니컴에서 액션바 관련하여 overflow menu 자체를 비활성화(클릭안되게) 하고 싶은데
도대체 모르겠습니다.. 고수님들 좀 가르쳐 주세요....
 
<menu
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/action_search"
        android:title="aaa"
        android:showAsAction="ifRoom"/>
    <item
        android:id="@+id/action_create"
        android:title="bbb"
        android:icon="@drawable/add"
        android:showAsAction="always" />
    <item
        android:id="@+id/action_go"
        android:title="go" />
    <item
        android:id="@+id/action_del"
        android:title="del" />
    <item
        android:id="@+id/action_set"
        android:title="set" />
</menu>       
 
위의 빨간 녀석들이 오버플로으에 드롭다운메뉴로 나오는 녀석들인데
저녀석들을 개개인적으로 비활성화 되는데 줄세개인가 가는 아이콘이라고 해야하나
오버플로우 아이콘 자체가 비활성화 되도록 하고 싶은데 방법 좀 가르쳐 주세요..