我正在为我的 android 应用程序使用解析推送通知。我按照教程下载 jar 文件,然后将其导入我的项目,我已将此代码添加到我的清单中
<service android:name="com.parse.PushService" />
<receiver android:name="com.parse.ParseBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
</intent-filter>
我也将 application.class 添加到我的包中,代码是
public class Application extends android.app.Application {
public Application() {
}
@Override
public void onCreate() {
super.onCreate();
// Initialize the Parse SDK.
Parse.initialize(this, "zzxxxxxxxxxxxxxxVv", "wyxxxxxxxCElxxxxxxx");
// Specify a Activity to handle all pushes by default.
PushService.setDefaultPushCallback(this, MainActivity.class);
// Save the current installation.
ParseInstallation.getCurrentInstallation().saveInBackground();
}
}
在我的主要活动中,我这样做
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ParseAnalytics.trackAppOpened(getIntent());
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
Log.e("MainActivity", "oncreate");
setContentView(R.layout.activity_main);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
有人说它在清单中的应用程序中的名称属性有问题,所以我用我的 pacakge 名称添加了这一行
<application
android:name="com.test.pushnotificationTest.Application"
在解析仪表板时,当我将应用程序安装到新设备中时,我会在仪表板中获得新条目..但是当我尝试发送推送通知时,我没有得到它。我需要添加广播接收器吗?但它以前在没有广播的情况下使用相同的代码工作帮助我