how to set the tabs in the bottom of the screen in android?

android, android-emulator, android-layout, android-tabs

Solution

or just use a custom one from: http://code.google.com/p/androidtabs/

it allows tabs on the bottom

Problem

i am working on tabactivity. i wanna show my tabwidget below the tabcontent(framelayout). i done it by setting the tabwiget tab attribute as ``` android:gravity="bottom" ``` but the framelayout cant align with those tabs. that is the tabs are shown at the bottom of the screen and overlap the framelayout how to do that? if set some height value to the framelayout it not optimized for all screens of android. what can i do? any idea???

Original source

Related problems