Android Tutorial [B4X] Anchors Demonstrated

Status
Not open for further replies.
SS-2016-02-29_15.19.52.png


SS-2016-02-29_15.19.11.png


The anchors feature is simple to use and is very effective with implementing flexible layouts.

By default the views position is relative to the top left corner.
There is nothing special about this corner and there is no real reason for all views to be position based on the distance from this specific corner.

By changing the horizontal or vertical anchors we can set the position relative to other sides of the screen or parent view.
So if want a button to always be close to the bottom of the screen then we will set the vertical anchor to BOTTOM and then set the distance. No matter what is the screen size the button will always be anchored to the bottom (anchor = distance to the relevant edge is constant).

The horizontal BOTH setting means that the distance from the view's left side to the screen (or parent) left edge is constant and that the distance from the view's right side to the screen (or parent) right edge is constant. This means that the width will change based on the device screen size.
BOTH is useful for large views that should fill the available space.
BOTH setting is similar to the designer script SetTopAndBottom or SetLeftAndRight methods.

There are many things that cannot be done with anchors. For example you cannot put three buttons side by side (with the same width) and fill the available space. This should be implemented with a simple designer script.

Note that the anchors effect ends right before the designer script starts.

The attached jar file is a B4J app that demonstrates the effect of anchors. It includes two forms. One with a simple layout and another with the same layout loaded multiple times. The second demonstrates the important fact that anchors are relative to the parent.
There is no code, other than the code that loads the layouts, or designer script in this example.

If Java (8.40+) is installed on your computer then you can double click on the jar to run it.
Run it and change the forms size to see the (trivial?) effect.

See post #5 for tips about using BOTH anchors.
 

Attachments

  • AnchorsExample.jar
    317.1 KB · Views: 1,721
Last edited:

Douglas Farias

Expert
Licensed User
Longtime User
@Erel i use on all my apps %x and %y
has an advantage in exchange (%) for anchoring?
 

b4auser1

Well-Known Member
Licensed User
Longtime User
There are many things that cannot be done with anchors. For example you cannot put three buttons side by side (with the same width) and fill the available space. This should be implemented with a simple designer script.

I can offer also to create special Sub which accepts as arguments Panel + List of buttons.
No matter how many such toolbars (and how many buttons in each of them) in the application . Just call the Sub for each toolbar (pass panel + List of buttons as arguments) and you don't have to create several layouts and copy and modify designer script into each layout.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Tips for correctly using BOTH anchors:

In this layout only Button4 is set correctly.
SS-2016-03-01_08.23.16.png


1. The horizontal or vertical BOTH setting should only be used for large views that should fill the parent view.
2. There can never be more than one view with the horizontal setting set to BOTH on any horizontal line, unless the views belong to different parents.
The same is true for vertical anchors and any vertical line.

When the form get narrower Button1 disappears:

SS-2016-03-01_08.27.20.png


When the form gets wider Button2 and Button3 overlap:

SS-2016-03-01_08.29.04.png
 

vbmundo

Well-Known Member
Licensed User
Hi Erel,

But imagine 4 horizontal buttons.. if you set the first button at LEFT , the second button at LEFT, the third button with BOTH and the fourth at Right.

this results in a totally disproportionate to the other third button. As you can do to make the 4 buttons have the same width and covering the entire width of the screen?

Regards
 
Status
Not open for further replies.
Top