On Mon, Jan 14, 2013 at 6:39 PM, Summer <[email protected]> wrote: > Hi, I am trying to use actionbar to generate tabs at bottom of the page. It > works fine to show the tabs at the top. but how to put it at bottom?
Use android:uiOptions="splitActionBarWhenNarrow" on your <activity> or <application>. > I tried " android:uiOptions="splitActionBarWhenNarrow"" at Manifest file. This will only take effect in situations where the OS considers the display to be "narrow". Typically, that is a phone-sized screen in portrait. In all other circumstances, the action bar is not split. There is no other means of putting an "action bar" at the bottom. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Localized Android Question-and-Answer Sites: http://www.andglobe.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

