AVRCP: Fix to replace loadlabel API for displayname

Framework API call of loadlabel for fetching package
displayname was consuming long time resulting BT On
timeout. Hence, replcae it with getApplabel API.

CRs-Fixed: 2619664
Change-Id: I4bfd418ed55af472aacfdb36fb85ad103c6e3217
diff --git a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
index e66b164..f8005cb 100644
--- a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
+++ b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
@@ -3980,16 +3980,15 @@
                         mPackageManager.queryIntentServices(intent, PackageManager.MATCH_ALL);
 
                 for (ResolveInfo info : playerList) {
-                    Log.d(TAG, "Fetch the displayName of package - start");
-                    CharSequence displayName = info.loadLabel(mPackageManager);
-                    Log.d(TAG, "Fetch the displayName of package - end");
-                    String displayableName =
-                            (displayName != null) ? displayName.toString():new String();
                     String serviceName = info.serviceInfo.name;
                     String packageName = info.serviceInfo.packageName;
-                    Log.d(TAG, "svc " + serviceName + " and pkg = " + packageName);
+                    Log.d(TAG, "Fetch the displayName of package - start");
+                    String displayName = getAppLabel(packageName);
+                    if (displayName == null) displayName = new String();
+                    Log.d(TAG, "Fetch the displayName of package -" + displayName + " end");
+                    Log.d(TAG, "svc " + serviceName + " pkg " + packageName);
                     BrowsePlayerInfo_ext currentPlayer =
-                            new BrowsePlayerInfo_ext(packageName, displayableName, serviceName);
+                            new BrowsePlayerInfo_ext(packageName, displayName, serviceName);
                     mBrowsePlayerInfoList.add(currentPlayer);
                     MediaPlayerInfo_ext playerInfo = getMediaPlayerInfo(packageName);
                     MediaController controller =