Android Question StdActionBar problem with Translatation ?

G-ShadoW

Active Member
Licensed User
Longtime User
Is it possible to add language translatation for app which use StdActionBar ?
How to loadlayouts ?

B4X:
Dim height As Int = CalculateHeight(True, True)
    vp.Initialize("vp", 3, 100%x, height)
    Activity.AddView(vp.AsView, 0, 0, 100%x, height)
    vp.Panels(0).LoadLayout("0")
    vp.Panels(1).LoadLayout("1")
    vp.Panels(2).LoadLayout("2")

How to load layout?

B4X:
Layout.LoadLayout("0")
    Layout.LoadLayout("1")
    Layout.LoadLayout("2")

    Layout.Button("Status").Text = Layout.GetTranslation("Status")

I have done translatation before and all was ok, but none of that app's have used StdActionBar.

I use XtraViews library for translatation.
 
Top