the word does not fit.
How do I know how to fix it?
How do I know how to fix it?
B4X:
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim label1 As Label
Private ScrollView1 As ScrollView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("dene")
label1.Initialize("label1")
label1.Text=File.ReadString(File.DirAssets,"bx4.txt")
ScrollView1.Panel.AddView(label1,0,0,100%x,100%y)
Dim s As AutoSizeScroll
s.set(label1,ScrollView1)
label1.TextColor=Colors.Black
label1.TextSize=14
label1.Gravity=Gravity.CENTER_HORIZONTAL
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub