Possible Duplicate:
SubMenu Layout Android
Is there anyway to make the following submenu look like the second (photoshopped) image?
Currently This is My Submenu:

Here Is the XML File For It:
<menu>
<item android:id="@+id/facebook_icon"
android:title="Share With Facebook"
android:icon="@drawable/ic_menu_facebook" />
<item android:id="@+id/twitter_icon"
android:title="Share With Twitter"
android:icon="@drawable/ic_menu_twitter" />
</menu>
I want it to look like this (If you have any ideas I would appreciate hearing them!):

Yes, it is possible. Try some thing like this:
1. Create class to store your item types
2.Create ListAdapter
3.Layout for your adapter:
4.And your dialog
This code was taken from here