Hello,
I set the top right button #1 via designer. It is a refresh button and displays well. I set the top left button with :
this places the left button at very top. The right button and left button is not at the same top value, one stays higher one stays lower. Is there any way to change left button position a bit ? I want to place a member profile button to left but can't do it like this.
TY
I set the top right button #1 via designer. It is a refresh button and displays well. I set the top left button with :
B4X:
Dim btnleftlist As List
btnleftlist.Initialize
Dim btn As BarButton
btn.Initializetext(Chr(0xE7FD),"cancel")
btn.SetFont(Font.CreateMaterialIcons(22))
btn.TintColor=Colors.White
btnleftlist.Add(btn)
Page1.TopLeftButtons=btnleftlist
this places the left button at very top. The right button and left button is not at the same top value, one stays higher one stays lower. Is there any way to change left button position a bit ? I want to place a member profile button to left but can't do it like this.
TY