Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.pm.ResolveInfo; public class Main { public static String getName(Context context, ResolveInfo resolveInfo) { return String.valueOf(resolveInfo.loadLabel(context.getPackageManager())); } }