B4A Question Font Size - Sergey_New (first post) Oct 25, 2023 AutoScaleAll is installed in the designer B4A Question Auto scale issue - Erel (first post) Mar 03, 2024 Please upload the images directly.
AutoScaleAll doesn't do any magic. It slightly increases or decreases the views sizes based on the difference between the variant dimensions and the screen dimensions.
Anchors and designer script are much more important. B4i Question (solved )Supporting multiple screens - aeric (first post) Sep 03, 2020 (2 reactions) 'All variants script
'AutoScaleAll
n = 3
gap = 0dip
Button2.Width = (100%x - ((n-1)*gap)) / 3
Button1.Width = Button2.Width
Button3.Width = Button2.Width
Button2.HorizontalCenter = 100%x / 2
Button1.Right = Button2.Left - gap
Button3.Left = Button2.Right + gap
Button2.Height = Button2.Width
Button1 B4i Question Visual Designer and Script - Erel (first post) Jan 23, 2019 AutoScaleAll will slightly decrease the views. As I previously wrote:
AutoScaleAll is a fine tuning feature. It will not solve your layout issues. B4A Question Custom View and AUTOSCALE ALL - Erel (first post) Jul 09, 2019 I wouldn't spend too much time on it. AutoScaleAll is a nice feature that makes a small difference in the displayed layout. Anchors and designer script are much more important.
The base panel size will be affected by AutoScaleAll. You can build the custom view content based on the base size. B4i Question DatePicker positioning issue - Alexander Stolte (first post) Nov 12, 2024 No you dont: 158552 Then comment out the “AutoScaleAll” in the layout and it sticks to the position. Italian Layout applicazione - BlueVision (first post) Feb 16, 2024 (1 reaction) 'All variants script
AutoScaleAll
PFront.SetTopAndBottom(0%y,100%y)
PFront.SetLeftAndRight(0%x,100%x)
PBack.SetTopAndBottom(0%y,100%y)
PBack.SetLeftAndRight(0%x,100%x)
PRose.Width = 30%x
PRose.HorizontalCenter = 50%x
PRose.Height = PRose.Width
PRose.VerticalCenter = 50%y
PArrowBlue.Width =30%x
PArro B4A Question AVD Screen Size & Scale - fasilosman (first post) Nov 25, 2018 Yes. I used "AutoScaleAll" in my all designer scripts as default and all designers layouts are designed based with "variant 320x480, scale = 1". If you think this problem is only in AVD and it will be ok in real devices then its fine. B4i Question Text Size, iPhone Vs iPad - Erel (first post) Feb 09, 2022 Sounds to me that you are not using dip units.
AutoScaleAll will slightly resize the text when the screen size is larger than the chosen variant.
There is no reason for the text size to be resized too much when viewing it on a larger screen. I'm using a 42'' monitor and the text size is the same as B4A Question Fit label textsize with devices - klaus (first post) Jan 01, 2018 AutoScaleAll resizes all the views, positions, dimensions and text sizes.
AutoScaleRate is a ponderation factor btween 0 to 1.
AutoScaleRate(0) does nothing and AutoScaleRate(1) is near %x and %y values.
You may have a look at chapter 8.12 AutoScale in the B4A Brinner's Guide, link in my signature. Page: 1 2 3 4 5 6 7 Powered by ColBERT |