Android Question Class and different modules

brianwiz12

Active Member
Licensed User
Longtime User
Hello,

I like how you can load a class and it loads everything including the layout.

I have multiple different modules/layouts.

How can i get one class to cover multiple ones?
 

brianwiz12

Active Member
Licensed User
Longtime User
Hello,

Let me try to explain it a bit better.

I have lets say 5 modules. They all load different .bal files (IE main, second, third, forth)

The class for appcompat loads a predefined .bal one called (layout)

The question is can a class be customized more to load different .bal files / On the other end can i take the .bal portion of the class out and just load the appcompat code in it.
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
The question is can a class be customized more to load different .bal files
Yes.

On the other end can i take the .bal portion of the class out
There is no such thing. There is no special connection between layout files and modules. The only relation is that when a layout is loaded the relevant global variables and the event subs are set.
 
Upvote 0
Top