Quick search

Table Of Contents

Relative Layout

New in version 1.4.0.

This layout allows you to set relative coordinate for children. If you want absolute positioning, check FloatLayout.

The RelativeLayout class behaves just like the regular FloatLayout, except that its child widgets are positioned relative to the layout.

For example, if you create a RelativeLayout, add a widgets with position = (0,0), the child widget will also move, when you change the position of the RelativeLayout. The child widgets coordiantes remain (0,0), i.e. they are relative to the containing layout.

Changed in version 1.7.0.

class kivy.uix.relativelayout.RelativeLayout(**kw)

Bases: kivy.uix.floatlayout.FloatLayout

RelativeLayout class, see module documentation for more information.