Android Question About info Library...

grifoDev

Member
Licensed User
Longtime User
Hello all
I am beginning..... :(

1) If I use one library , how can I do find all events of this library...?
example: sub XXX_Click .... <<<<????
or others subroutines linked to library ?

2) For me is difficult to find the last version of generic library
example: I use AHActionBar version 1.0 and I don't' know if this version
it the LAST !!!
what I can do ?
best regards
Grifo
 

corwin42

Expert
Licensed User
Longtime User
1)

Type

Sub<Space>

then press the TAB key. You will get a list of all object types. Select the object you want to know the events for. The following submenu shows all available events for this object.

Unfortunately there are very few libraries where the library developer did not add the events correctly. With these libraries the above method does not work. You will have to search the library thread and see the documentation there.

2)

Every library should have its own thread in the forum. Normally the library developers update the first post of a library thread with the new version when it is available.

Most library threads can be found in the library list.
 
Upvote 0
Top