Hi Guys
I want to use ICS spinner in my android application so i can move between views (min API 10), I’m using ABS.
So how can i add and use spinner( but please A detailed explanation ) in my case, and how to add additional button in the ABS?
Thax for your time 🙂
Hi Guys I want to use ICS spinner in my android application so i
Share
Use
setNavigationMode()andNAVIGATION_MODE_LISTwithActionBar, as is illustrated in this sample application and as is covered in the documentation.You do this the same way that you add items to the overflow menu (or the old options menu), except that you include
android:showAsActionin your menu XML (e.g.,android:showAsAction="always"), as is illustrated in this sample application and as is covered in the documentation.