Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UID (Android にインストールされているアプリのリスト) デバイスのリストを取得するにはどうすればよいですか。
アプリケーションの UID は、ApplicationInfoクラスで見つけることができます。次のように、デバイス上のすべてのアプリケーションに対して取得します。
ApplicationInfo
List<ApplicationInfo> appsInfo = context.getPackageManager() .getInstalledApplications(PackageManager.GET_UNINSTALLED_PACKAGES);