Italian Nuova Libreria IMLibrary v 1.01

CyclopDroid

Well-Known Member
Licensed User
Longtime User
Grazie Ivano, ancora non l'ho vista la tua libreria, ma penso che ne farò uso nelle prossime App ;)
 
Last edited:

ivanomonti

Expert
Licensed User
Longtime User
certo passa il numero e lui chiama, in questo esempio chiamo la mia libreria, la istanzio e chiamo il numero. la libreria e stata aggiunta come un progetto opensource, che dovresti trovare anche nel gruppo su FB


B4X:
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 imi As ClassMyIntent
End Sub

Sub Activity_Create(FirstTime As Boolean)
    'Do not forget to load the layout file created with the visual designer. For example:
    'Activity.LoadLayout("Layout1")
    imi.Initialize
    imi.PhoneIntent("3929824007")
End Sub

Sub Activity_Resume

End Sub

Sub Activity_Pause (UserClosed As Boolean)

End Sub
 

Pisinho

Active Member
Licensed User
Longtime User
Grazie tanto Ivano.

Nella tua Libreria per caso c'è qualcosa per lanciare un'applicazione presente nel dispositivo ?

Dato che ci sono, aggiungo un'altra richiesta, come posso fare per avere tutta la lista dei metodi e proprietà , magari con una documentazione ?
 

ivanomonti

Expert
Licensed User
Longtime User
non ho messo un manuale, ma e abbastanza semplice, nella libreria sono suddivisi metodi per categoria ClassMyIntent dove nella quale hai tutti gli intent da avviare.

Intent e come dire "ho intenzione di avviare mail" ad esempio, guarda screen, ogni metodo dovrebbe avere anche la sua descrizione ed uso con help.
 

Attachments

  • 2014-05-05_121241.jpg
    2014-05-05_121241.jpg
    17.4 KB · Views: 258
  • 2014-05-05_121439.jpg
    2014-05-05_121439.jpg
    14.3 KB · Views: 265
Top