D
Deleted member 103
Guest
I think there are too many differences between Android and IOS.
One should try to match at least the most common are some of android on IOS.
Thus, a programmer would have less expenses the Android app in iOS reprogram.
Below is just a small example of the often occurs during programming.
One should try to match at least the most common are some of android on IOS.
Thus, a programmer would have less expenses the Android app in iOS reprogram.
Below is just a small example of the often occurs during programming.
B4X:
'Android
Dim txtName As EditText
txtName.Initialize("txtName")
txtName.Typeface = Typeface.CreateNew(Typeface.SANS_SERIF, Typeface.STYLE_NORMAL)
txtName.TextSize=30
txtName.Gravity=Gravity.LEFT + Gravity.CENTER_VERTICAL
txtName.InputType=txtName.INPUT_TYPE_TEXT
txtName.SingleLine=True
txtName.Text="Filippo"
txtName.Hint="Standort"
'IOS
Dim txtName As TextField
txtName.Initialize("txtName")
txtName.Font = Font.CreateNew2("ArialMT", 30)
txtName.TextAlignment=txtName.ALIGNMENT_LEFT
txtName.KeyboardType=txtName.TYPE_DEFAULT
txtName.Text="Filippo"
txtName.HintText="Standort"