I think it's due to how all global variables work, not just views.
Try it in a B4XPages project.
If you declare a variable in the Class_Globals, let's say:
Private MyVar As Int = 10
and one in B4XPage_Created, which theoretically should be private - local, "visible" only within this sub-event:
this second declaration is as if it were a "redefinition" of the first. Note that if you declared it the second time as Double, the IDE would immediately report the error, you can't change its type.
In the B4XPage_Appear:
the log will not be 10, the value of the global variable, but 20 because, as mentioned, in the sub you have "redefined" the same variable (I don't know if it can be defined as "override").