MitchBu Well-Known Member Licensed User Longtime User Aug 26, 2019 #1 I found the following code for B4J at https://www.b4x.com/android/forum/threads/pane-bringtofront.70149/#post-445687 B4X: Sub ToFront(n As Node) Dim joNode As JavaObject = n joNode.RunMethod("toFront", null) End Sub Could this be adapted for B4A ? TIA
I found the following code for B4J at https://www.b4x.com/android/forum/threads/pane-bringtofront.70149/#post-445687 B4X: Sub ToFront(n As Node) Dim joNode As JavaObject = n joNode.RunMethod("toFront", null) End Sub Could this be adapted for B4A ? TIA
Erel B4X founder Staff member Licensed User Longtime User Aug 26, 2019 #3 Note that buttons have an elevation of 2dip and the elevation of panels can be set programmatically or with the designer. The elevation has higher precedence over the views order. Upvote 0
Note that buttons have an elevation of 2dip and the elevation of panels can be set programmatically or with the designer. The elevation has higher precedence over the views order.
MitchBu Well-Known Member Licensed User Longtime User Aug 26, 2019 #4 Thank you so much. I had completely overlooked BringToFront! Upvote 0