<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>13 Dec 2014 23:15:00 Z</lastBuildDate><pubDate>13 Dec 2014 23:15:00 Z</pubDate><description>Hello everyone,&#13;
I wonder how I should change my code to the images to be saved with this Java code in WinDev Mobile&#13;
(I am a beginner in Java)&#13;
this function list Android Apps&#13;
But the line&#13;
p.applicationInfo.loadIcon(getCurrentActivity().getPackageManager()); returns me android.graphics.drawable.BitmapDrawable@40fb2d60&#13;
I can not save the image or assigned to a variable picture&#13;
Please, Help me&#13;
&#13;
//Java import java.util.*; import android.util.*; import android.content.pm.*; public static String APKListInstall(boolean bAPKSystem){ String sRes = ""; List&lt;PackageInfo&gt; packs = getCurrentActivity().getPackageManager().getInstalledPackages(0); for(int i=0;i&lt;packs.size();i++) { PackageInfo p = packs.get(i); if(!bAPKSystem &amp; ((p.applicationInfo.flags &amp; ApplicationInfo.FLAG_SYSTEM) == 1)){ continue; } if (p.versionName == null) { continue ; } if (sRes != ""){ sRes += "$SEP1$"; } sRes += p.packageName; sRes += "$SEP2$"; sRes += Integer.toString(p.versionCode); sRes += "$SEP2$"; sRes += p.versionName; sRes += "$SEP2$"; sRes += p.applicationInfo.loadIcon(getCurrentActivity().getPackageManager()); sRes += "$SEP2$"; sRes += p.applicationInfo.loadLabel(getCurrentActivity().getPackageManager()).toString(); } return sRes; }</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/49480-images-with-list-android-apps/read.awp</link><title>[b]Images with list Android Apps[/b]</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster></channel></rss>
