android:如何获取备份过程的默认应用程序?

发布于 2024-12-01 07:49:39 字数 63 浏览 1 评论 0原文

我正在尝试获取默认应用程序(视频、图像、联系人、短信)以进行备份过程。我该怎么做?有没有默认方法可以做到这一点?

I'm trying to fetch the default applications (video, images, contact, sms) for backup process. How can i do this? Is there any default method for to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陈独秀 2024-12-08 07:49:39

我认为默认设置(与 Android 操作系统一起安装的应用程序)和用户稍后安装的应用程序之间没有任何区别。据我所知,你不可能知道这一点。在 Android 开发者 Google 群组中提问或搜索此内容即可获取确认。

编辑:
以下代码获取所有已安装应用程序的名称。同样,您也可以获取 Packageinfo。

private void getInstalledApps() {
 PackageManager packageManager=this.getPackageManager();
    List<ApplicationInfo> applist=packageManager.getInstalledApplications(0);

    Iterator<ApplicationInfo> it=applist.iterator();
    while(it.hasNext()){
        ApplicationInfo pk=(ApplicationInfo)it.next();

        String appname = packageManager.getApplicationLabel(pk).toString();
        installedapplist.add(appname);
    }
}

I dont think there is any difference between the default(apps installed along with the android OS) and apps installed later by user. As far as I know there is no way you can know that. Ask or Search this in Android Developers google groups to get a confirmation.

EDIT:
Following code gets the names of all installed apps. Similarly you can get Packageinfo as well.

private void getInstalledApps() {
 PackageManager packageManager=this.getPackageManager();
    List<ApplicationInfo> applist=packageManager.getInstalledApplications(0);

    Iterator<ApplicationInfo> it=applist.iterator();
    while(it.hasNext()){
        ApplicationInfo pk=(ApplicationInfo)it.next();

        String appname = packageManager.getApplicationLabel(pk).toString();
        installedapplist.add(appname);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文