如何在android中使用GCM推送通知显示图像

时间:2017-08-04 04:56:51

标签: jquery cordova push-notification phonegap

我已成功使用GCM在Android中实现文本推送通知,但是现在,我想在推送通知时将图像放在状态栏中,如下所示:

enter image description here

我正在使用jquery和javascript开发我的aps,

这是我的清单:

 <activity android:name="com.plugin.gcm.PushHandlerActivity"/>
<receiver android:name="com.plugin.gcm.CordovaGCMBroadcastReceiver" android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.example.mypackage" />

这是我的插件结构,

enter image description here

这是我的php发送通知

$gbr="http://myWeb/image1.jpg";
define( 'API_ACCESS_KEY', 'key');
$registrationIds = array($to);
$msg = array
(
'message' => $message,
'title' => $title,
'vibrate' => 1,
'sound' => 1,
'image'=>$gbr

// you can also add images, additionalData
);
$fields = array
(
'registration_ids' => $registrationIds,
'data' => $msg
);
$headers = array
(
'Authorization: key=' . API_ACCESS_KEY,
'Content-Type: application/json'
);
$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://android.googleapis.com/gcm/send' );
curl_setopt( $ch,CURLOPT_POST, true );
curl_setopt( $ch,CURLOPT_HTTPHEADER, $headers );
curl_setopt( $ch,CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $fields ) );
$result = curl_exec($ch );
curl_close( $ch );

1 个答案:

答案 0 :(得分:1)

使用图片而不是图片

$msg = array
(
'message' => $message,
'title' => $title,
'vibrate' => 1,
'sound' => 1,
"style"=> "picture",
"picture"=>"https://www.petfinder.com/wp-content/uploads/2012/11/91615172-find-a-lump-on-cats-skin-632x475.jpg"

// you can also add images, additionalData
);