I am creating an app for Google Glass and I want a menu with over 15 options. I want it to be similar to this one. I have tried many different options, In my XML I have:
      <item
        android:id="@+id/option1"
        android:title="@string/option1"
       android:icon="@drawable/ic_stop"/>
      <item
        android:id="@+id/option2"
        android:title="@string/option2"
        android:icon="@drawable/ic_stop" />
      <item
        android:id="@+id/option3"
        android:title="@string/option3"
        android:icon="@drawable/ic_stop" />
      ....
How do I make the options menu be able to be operated with the tilt of your head? Thanks.