Android: action bar

Can someone help me ...

I would like an action screen to appear above my tab ..
How can I implement the action bar mainly in xml ..

I cannot find a tutorial with action bar and tab.

Thanks in advance!

+6
java android android-layout xml tabs
source share
3 answers

The Google IO Schedule application has source code for both action panels and action panels with a tab interface below it. http://code.google.com/p/iosched/

+8
source share

I created the ActionBarSherlock library, which is expanded from the Android Compatibility Library, to implement support for my own action bar, let's return to Android 1.6.

A key feature of this library is that it mimics the native action panel of Android 3.0+ and allows you to interact with it and create it on all versions of Android from version 1.6 to the latest version 3.1. The above website has examples and documentation that should give you an idea of ​​how this works.

You can also see the implementation page on the GitHub wiki for real library applications.

enter image description here

+15
source share

Here are two projects that offer implementation implementations:

https://github.com/johannilsson/android-actionbar

https://github.com/cyrilmottier/GreenDroid

+8
source share

All Articles