Android Question B4a is the same B4i ?

MohammadNew

Active Member
Licensed User
Longtime User
Hello everyone,

I want to ask you very important question for me >

B4A is the same B4i ?

about the code without outside libraries . Just the code ?

could you please, tell me here in this thread, do not put links about other threads . just answer me yes 100% same or any correct answer.

Thanks

Regards
 

klaus

Expert
Licensed User
Longtime User
just answer me yes 100% ...
The answer is NO!
Android and iOS are different operating systems, each with its specificitiees.
There are views similar in both system with the same code and othera are quite different.
Most of the user interface code needs to be
Most of all other, none uesr interface code, can be reused.
Anyway you need to define a new project in B4i. You cannot convert a B4A project directly into a B4i project.
You can convert a B4A layout into a B4i layout with the B4ALayoutConverter.
You may have a look in the B4i Beginner's guide at chapter 11 Differences B4i <> B4A.
 
Last edited:
Upvote 0

MohammadNew

Active Member
Licensed User
Longtime User
Sintax code is the same, but there are some difference. You can reuse a great part of your code, but is not exactly the same.
For example:
b4a set label text size
B4X:
lbl.textsize = 18
b4i set label text size
B4X:
lbl.font= font.createnew(18)


THe answer is NO!
Android and iOS are different operating systems, each with its specificitiees.
There are views similar in both system with the same code and othera are quite different.
Most of the user interface code needs to be
Most of all other, none uesr interface code, can be reused.
Anyway you need to define a new project in B4i. You cannot convert a B4A project directly into a B4i project.
You can convert a B4A layout into a B4i layout with the B4ALayoutConverter.
You may have a look in the B4i Beginner's guide at chapter 11 Differences B4i <> B4A.

many Thanks.
 
Upvote 0
Top