It can be useful when you load the layout multiple times, for example with CLV.
You can then do something like:
Dim p As B4XView = clv.GetPanel(x)
p.GetView(8).Text = "abc" 'txtStagione
There are of course, other ways to organize the references and I would say that if your layout becomes complicated then this method is probably not the best one. It will break when you add or remove a view.