Capisco che in alcuni modi l'argomento e' stato trattato, ma io non riesco proprio a salvare una edittext......
ho provato cosi':
Capisco la stupidita' della domanda, ma se potete datemi un aiuto!
grazie e felice pasqua!
ho provato cosi':
B4X:
'Activity module
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 Testo1 As EditText
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("main")
If File.ExternalWritable = False Then
Msgbox("Cannot write on storage card.", "")
Return
End If
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub Save_Click
Testo1.Initialize(File.OpenOutput(File.DirRootExternal, "Testo.txt", False))
End Sub
Capisco la stupidita' della domanda, ma se potete datemi un aiuto!
grazie e felice pasqua!