gpt4 book ai didi

android - GoogleCloudMessaging 示例

转载 作者:行者123 更新时间:2023-11-29 21:24:28 25 4
gpt4 key购买 nike

我正在尝试在我的项目中实现 gcm,因为我想制作设备到设备的消息传递应用程序

我在这里阅读 http://developer.android.com/google/gcm/client.html因为它建议从 http://code.google.com/p/gcm 下载源代码网站

但是当我下载其中的代码时,我发现下面已经弃用的类是类代码

public class DemoActivity extends Activity {

TextView mDisplay;
AsyncTask<Void, Void, Void> mRegisterTask;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
checkNotNull(SERVER_URL, "SERVER_URL");
checkNotNull(SENDER_ID, "SENDER_ID");
// Make sure the device has the proper dependencies.
GCMRegistrar.checkDevice(this); -
// Make sure the manifest was properly set - comment out this line
// while developing the app, then uncomment it when it's ready.
GCMRegistrar.checkManifest(this); <--------------------------this classs is deprecated
setContentView(R.layout.main);
mDisplay = (TextView) findViewById(R.id.display);
registerReceiver(mHandleMessageReceiver,
new IntentFilter(DISPLAY_MESSAGE_ACTION));

所以我有没有误会?任何人都可以向我推荐 *GoogleCloudMessaging * 类的示例

最佳答案

是的,你是对的,但还有一个名为 gcm client 的目录

enter image description here

如果你去那里浏览你会得到 GoogleCloudMessaging 的例子:)

关于android - GoogleCloudMessaging 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20348623/

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