mirror of
https://github.com/SimpleMobileTools/Simple-App-Launcher.git
synced 2025-05-27 17:14:23 +02:00
54 lines
2.2 KiB
Kotlin
54 lines
2.2 KiB
Kotlin
package com.simplemobiletools.applauncher.extensions
|
|
|
|
import android.content.Context
|
|
import android.content.Intent
|
|
import android.content.pm.LauncherApps
|
|
import android.content.pm.PackageManager
|
|
import android.graphics.drawable.Drawable
|
|
import com.simplemobiletools.applauncher.helpers.Config
|
|
import com.simplemobiletools.applauncher.helpers.DBHelper
|
|
import com.simplemobiletools.applauncher.models.AppLauncher
|
|
|
|
val Context.config: Config get() = Config.newInstance(applicationContext)
|
|
|
|
val Context.dbHelper: DBHelper get() = DBHelper.newInstance(applicationContext)
|
|
|
|
fun Context.getNotDisplayedLaunchers(displayedLaunchers: ArrayList<AppLauncher>): ArrayList<AppLauncher> {
|
|
val allApps = ArrayList<AppLauncher>()
|
|
val intent = Intent(Intent.ACTION_MAIN, null)
|
|
intent.addCategory(Intent.CATEGORY_LAUNCHER)
|
|
val list = packageManager.queryIntentActivities(intent, PackageManager.PERMISSION_GRANTED)
|
|
for (info in list) {
|
|
val componentInfo = info.activityInfo.applicationInfo
|
|
val label = componentInfo.loadLabel(packageManager).toString()
|
|
val packageName = componentInfo.packageName
|
|
|
|
var drawable: Drawable? = null
|
|
try {
|
|
// try getting the properly colored launcher icons
|
|
val launcher = getSystemService(Context.LAUNCHER_APPS_SERVICE) as LauncherApps
|
|
val activityList = launcher.getActivityList(packageName, android.os.Process.myUserHandle())[0]
|
|
drawable = activityList.getBadgedIcon(0)
|
|
} catch (e: Exception) {
|
|
}
|
|
|
|
if (drawable == null) {
|
|
drawable = if (packageName.isAPredefinedApp()) {
|
|
resources.getLauncherDrawable(packageName)
|
|
} else {
|
|
try {
|
|
packageManager.getApplicationIcon(packageName)
|
|
} catch (ignored: Exception) {
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
allApps.add(AppLauncher(0, label, packageName, drawable))
|
|
}
|
|
|
|
val sorted = allApps.sortedWith(compareBy { it.name.toLowerCase() })
|
|
val unique = sorted.distinctBy { it.packageName }
|
|
return unique.filter { !displayedLaunchers.contains(it) && it.packageName != "com.simplemobiletools.applauncher" } as ArrayList<AppLauncher>
|
|
}
|