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 :)
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How can I create this custom Bottom Navigation on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
Use
setNavigationMode()
andNAVIGATION_MODE_LIST
withActionBar
, 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:showAsAction
in your menu XML (e.g.,android:showAsAction="always"
), as is illustrated in this sample application and as is covered in the documentation.