B4A Library StdActionBar - Another ActionBar library - Erel    Jan 3, 2021   (19 reactions)   tags: ActionBar StdActionBar (Standard ActionBar) library is based on the native ActionBar API, therefore it is only supported by Android 4+.
StdActionBar / StdViewPager tutorial: ActionBar / Sliding Pages tutorial....
This library allows you to add tabs and dropdown list to the action bar:
22024 22025
The attached... that the ButtonClicked event will not work on these devices.
You should use Activity_ActionBarHomeClick event... B4A Tutorial [B4XPages] Single page with no action bar and other pages with action bar - Erel    Dec 30, 2024   (7 reactions) This is an example of how to make one of the pages show without the action bar while the others do show it.
Note that usage of IME in the main activity, to find the action bar height.
In each of the pages, other than the one that shows without the action bar, we need to add:
Private Sub B4XPage_Appear
Dim jo As JavaObject = B4XPages.GetManager.ActionBar
jo.RunMethod("show"... B4A Tutorial ActionBar / Sliding Pages tutorial - Erel    Feb 25, 2016   (13 reactions)   tags: ActionBar /tabstripviewpager-better-viewpager.63975/
StdActionBar library allows you to create layouts that use the action bar as a navigation interface.
Note that StdActionBar requires Android 4+.
In...("1")
vp.Panels(2).LoadLayout("2")
The next step is to add the ActionBar tabs:
bar.... In split mode the action bar menu items appear at the bottom in portrait mode (phones only... B4A Question [SOLVED] StdActionBar Color - eurojam    Feb 29, 2016 Hi all, may be I don't see the wood for the trees: is it possible to change the color of the stdActionBar for different activities - I know how to change the color theme in general - but activity main should have a blue and activity two should have a red actionbar...? Thanks in advance stefan... B4A Code Snippet Change the action bar height - Erel    Sep 17, 2020   (8 reactions) 100182 Add to manifest editor: SetApplicationAttribute(android:theme, "@style/LightTheme") CreateResource(values, theme.xml, <resources> <style name="LightTheme" parent="@android:style/Theme.Material.Light"> <item name="android:actionBarSize">40dp</item> </style> </resources> ) Remove: CreateResourceFromFile(Macro, Themes.DarkTheme) 'or LightTheme ... B4A Code Snippet Remove Material Action Bar Shadow - Erel    Jun 7, 2016   (5 reactions) The material action bar is elevated by default. The following code sets the elevation to 0 and removes the shadow. Sub RemoveActionBarShadow Dim p As Phone If p.SdkVersion >= 21 Then Dim jo As JavaObject jo.InitializeContext Dim elevation As Float = 0 jo.RunMethodJO("getActionBar", Null).RunMethod("setElevation", Array(elevation)) End If End Sub Depends on Phone and JavaObject libraries. 44756... B4A Library StdActionBarHelper - Utilities for the Standard ActionBar - corwin42    Jul 18, 2014   (10 reactions)   tags: StdActionBarHelper, ActionBar, actionbar pop menu This library adds some features to the Standard ActionBar. It uses the native ActionBar which... manufacturer changed the ActionBar implementation on the device).
There are some additional methods to hide the title/appicon etc. from the ActionBar.
With version 1.10 of this library there are many new objects:
ActionMode - Create a contextual ActionBar
Menu and MenuItem - Used to create and... B4A Tutorial Material Design 3 - Using a ToolBar as ActionBar - corwin42    Jul 31, 2016   (38 reactions)   tags: toolbar, Material Design instead of the standard system ActionBar for Material Design apps. In this tutorial we will use a ACToolBar(Light/Dark) object from the AppCompat library (1.10 and above) as an ActionBar. One of the main differences between a ToolBar and the standard ActionBar is that the ActionBar is a system component...: <item name="windowNoTitle">true</item> <item name="windowActionBar"... This disables the standard ActionBar in the theme. With the windowActionModeOverlay set to true ActionMode... B4A Question Panel color under Action Bar - josejad    Oct 22, 2025 Hi:
Maybe a silly question but... how can I put a panel under the navigation bar with the same color? I can't avoid the shadow under the Navigation Bar
167956
Thanks... B4A Question [Solved] StdActionBar error in Android 9 Pie - Cebuvi    Feb 28, 2019 Hello, Yesterday my smartphone (samsung S8) is updated to Android 9 Pie and applications that use the StdActionBar library give an error and stop. I have verified that this happens when in the manifest I have: "targetSdkVersion = "28". With targetSdkVersion = "23" , everything works correctly. This is the error that occurs: Error occurred on line: 189 (Act_Coordenadas) java.lang.RuntimeException: java.lang.IllegalArgumentException: Cannot set 'scaleY' to... Page: 1   2   3   4   5   6   7   |