james_sgp Active Member Licensed User Longtime User Mar 21, 2020 #1 Hi, I`m using a B4XDrawer as a menu, but I find B4XLocalizer isnt changing the text for items at the bottom of the menu (I`m assuming its because they aren`t onscreen?). Please advise how I can make Localizer correctly convert the items in the xCLV. James
Hi, I`m using a B4XDrawer as a menu, but I find B4XLocalizer isnt changing the text for items at the bottom of the menu (I`m assuming its because they aren`t onscreen?). Please advise how I can make Localizer correctly convert the items in the xCLV. James
Erel B4X founder Staff member Licensed User Longtime User Mar 22, 2020 #2 You will need to do something like: B4X: For i = 0 To CLV.Size - 1 Dim p As B4XView = CLV.GetPanel(i) Localizator.LocalizeLayout(p) Next Upvote 0
You will need to do something like: B4X: For i = 0 To CLV.Size - 1 Dim p As B4XView = CLV.GetPanel(i) Localizator.LocalizeLayout(p) Next