at the moment only the package names are displayed (see picture):
what I want is: SlimLauncher for example instead of com.slim.slimlauncher
The corressponding code is:
final PackageManager pm = getPackageManager ();
List< ApplicationInfo > packages = pm.getInstalledApplications ( PackageManager.GET_META_DATA );
View inflate = getLayoutInflater(). inflate(R. layout. anwendung_starten_layout, null);
String packetName = null;
for ( ApplicationInfo packageInfo : packages ) {
packetName = packageInfo.packageName;
kinder.add ( packetName );
}
Thanks a lot