gpt4 book ai didi

android - 如何在android中设置parse的安装对象的一列的值

转载 作者:行者123 更新时间:2023-11-29 15:49:40 25 4
gpt4 key购买 nike

我正在尝试学习如何使用解析,此刻我想知道如何在初始化时设置列的值(“安装”对象)。

这是我的 onCreate 方法。

    public void onCreate() {
super.onCreate();

Parse.initialize(this, "****", "****");
ParseInstallation.getCurrentInstallation().saveInBackground();
ParsePush.subscribeInBackground("", new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Log.d("com.parse.push", "successfully subscribed to the broadcast channel.");
} else {
Log.e("com.parse.push", "failed to subscribe for push", e);
}
}
});

}

我添加了一个名为 MacID 的列。每当有人下载​​该应用程序时,我都想获取他们的 mac 地址并将其保存到解析对象中。谢谢

最佳答案

对于安装对象先去解析网站,在安装类中创建需要的栏目。

然后在代码中

    ParseInstallation installation = ParseInstallation.getCurrentInstallation();
installation.put("column name",mcIdValue);
installation.saveInBackground();

关于android - 如何在android中设置parse的安装对象的一列的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30974537/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com