Hello good people,
I have this Erel's example to list installed app.
can this list be clickable to launch the apps ?
if so, how ?
?
I have this Erel's example to list installed app.
Get List Of Installed Apps and their icons
Hi all. This function logs a list of installed apps and can also get their icons. I have had this for a few years and it could be modernized to the new b4a features but it works so... Right now it just logs the output but there is also remarked out code to add everything to a ListView This is...
www.b4x.com
B4X:
Private Sub ShowInstalledApps
Dim pm As PackageManager 'phone library
For Each pck As String In pm.GetInstalledPackages
Dim name As String = pm.GetApplicationLabel(pck)
Log(name)
Next
End Sub
can this list be clickable to launch the apps ?
if so, how ?
?