为 Android C2DM 选择 Google 帐户

发布于 2024-10-10 12:25:06 字数 101 浏览 3 评论 0原文


我的 C2DM 服务有问题。鉴于设备上登录了多个 Google 帐户,我希望我的应用程序选择其中一个帐户来注册 C2DM(您知道使用首选项)。是否可以?

提前致谢

I have a problem with C2DM service. Given that there is more than one Google account loged on the device I would like my application to choose one of these accounts to register to C2DM with (You know using preferences). Is it possible?

Thanks in advance

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

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

发布评论

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

评论(2

帅气称霸 2024-10-17 12:25:06

是的,这是可能的。查看 Chrome to Phone 应用程序 (http://code.google.com/p/chrometophone/)。他们从生成的字符串数组中构建了一个帐户列表,如下所示:

    ArrayList<String> accountNames = new ArrayList<String>();
    Account[] accounts = AccountManager.get(this).getAccounts();
    for (Account account : accounts) {
        if (account.type.equals("com.google")) {
            accountNames.add(account.name);
        }
    }

    String[] result = new String[accountNames.size()];
    accountNames.toArray(result);

Yes, it is possible. Look at the Chrome to Phone application (http://code.google.com/p/chrometophone/). There they build a list of accounts from the String array generated like this:

    ArrayList<String> accountNames = new ArrayList<String>();
    Account[] accounts = AccountManager.get(this).getAccounts();
    for (Account account : accounts) {
        if (account.type.equals("com.google")) {
            accountNames.add(account.name);
        }
    }

    String[] result = new String[accountNames.size()];
    accountNames.toArray(result);
随风而去 2024-10-17 12:25:06

经过一番思考后,我认为这样行不通。所有 C2DM 需要的是“现有连接”,我认为无论有多少个 google 帐户,都只有一个连接。

After giving it some thought I think it just does't work this way. All the C2DM needs is 'existing connection' and I think there is only one connection no matter how many google accounts there are.

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