Android Question get information from .BAL file

ilan

Expert
Licensed User
Longtime User
hi

is it possible to get from the *.bal file created in the designer any information about all views that were created?

what i need is: name, left, top, height, width
 
Last edited:

ilan

Expert
Licensed User
Longtime User
ok this is a nice way but too much to dig the values i need :(

is there another way to get those values:

View.Name
View.Width
View.Height
View.Left
View.Top

??
 
Upvote 0

inakigarm

Well-Known Member
Licensed User
Longtime User
ok this is a nice way but too much to dig the values i need :(

is there another way to get those values:

View.Name
View.Width
View.Height
View.Left
View.Top

??[/QUOTE]="ilan, post: 402882, member: 27471"]ok this is a nice way but too much to dig the values i need :(

is there another way to get those values:

View.Name
View.Width
View.Height
View.Left
View.Top

??
Did you try to:
1) convert bal to Json
2) parse the result json on b4j json online parsing?? (Search for at B4J Forum)
3) copy the code and paste on an B4j aplication

This way it seems not so dificult to get this props
 
Upvote 0

ilan

Expert
Licensed User
Longtime User
2) parse the result json on b4j json online parsing?? (Search for at B4J Forum)

sounds really easy but dont know how to do it.

what i try to do is get all views (without knowing their names) and list them like this

view1.name
view1.width
view1.height
view1.top
view1.left

view2.name
view2.width
view2.height
view2.top
view2.left

...

do you think it could be possible to get that out of the Json file?

(making later the b4j app is not or problem just how to get all views listed like above :confused:)
 
Last edited:
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
can you upload samples of you bal´s converted to json?
 
Upvote 0

inakigarm

Well-Known Member
Licensed User
Longtime User
As stated; first part was easy, looking for Phase II (Parent and get views properties)
upload_2016-2-19_17-28-13.png
 

Attachments

  • upload_2016-2-19_17-27-37.png
    upload_2016-2-19_17-27-37.png
    152.8 KB · Views: 157
Upvote 0

inakigarm

Well-Known Member
Licensed User
Longtime User
Upvote 0
Top