我在我的应用程序中实现GCM。我已经按照GCM教程中给出的所有步骤从developer.android.com
我能够成功地从GCM获得注册ID,并且我正在将此ID传递给我的应用程序服务器。因此,成功地执行了注册步骤。
现在,当我的应用服务器向我的设备发送PUSH消息时,服务器将获得SUCCESS=8 FAILURE=0等消息,即:服务器成功发送消息,但OnMessage被调用8次取决于成功值。
我的设备已连接,无需任何代理设置即可使用我的组织wifi。
所以我的问题是:为什么我收到来自GCM的推送消息的时间和成功的时间一样多。为什么谷歌要花那么多时间?原因可能是什么?
我的GCMBaseIntentService看起来像
public class GCMIntentService extends GCMBaseIntentService {
public GCMIntentService() {
super(GCMActivity.SENDER_ID);
}
@Override
protected void onError(Context arg0, String arg1) {
Log.d("GCM", "RECIEVED A ERROR MESSAGE");
// TODO Auto-generated method stub
}
@Override
protected void onRegistered(Context arg0, String registrationId) {
//Send the registration id to my app server to store the reg id list
GCMActivity.sendRegIdtoApplicationServer(registrationId);
}
@Override
protected void onUnregistered(Context arg0, String registrationId) {
// TODO Auto-generated method stub
}
@Override
protected void onMessage(Context context, Intent intent) {
Log.d("GCM", "RECIEVED A MESSAGE");
// Get the data from intent and send to notificaion bar
String data = intent.getStringExtra("data");
String action = intent.getAction();
if((action.equals("com.google.android.c2dm.intent.RECEIVE"))) {
try {
JSONObject jsonObject = new JSONObject(data);
boolean updateStatus = jsonObject.getBoolean("update");
if (updateStatus) {
//Showing Notification to user
}
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
我的活动看起来像
public class GCMActivity extends Activity {
public final static String SENDER_ID = "872355133485";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_gcm);
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
final String regId = GCMRegistrar.getRegistrationId(this);
if (regId.equals("")) {
GCMRegistrar.register(this, SENDER_ID);
} else {
// sendRegIdtoApplicationServer(regId);
Log.v("gh", "Already registered");
System.out.println("RegisterID:"+ regId);
}
}
And Manifest file will be
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.aspire.gcmsample"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<permission android:name="com.aspire.gcmsample.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="com.aspire.gcmsample.permission.C2D_MESSAGE" />
<!-- App receives GCM messages. -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<!-- GCM connects to Google Services. -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" android:debuggable="true">
<activity
android:name=".GCMActivity"
android:label="@string/title_activity_gcm" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.google.android.gcm.GCMBroadcastReceiver"
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.aspire.gcmsample" />
</intent-filter>
</receiver>
<service android:name=".GCMIntentService" />
</application>
</manifest>
这是我的服务器端代码
Properties apHeaders = new Properties();
// Use your own credentials for the below three lines
apHeaders.put("Content-Type", "application/json");
apHeaders.put("Authorization","key="+apiKey);
/*String data = "{\"registration_ids\":"+ devicesList +", \"data\":" +
"{\"data\":{\"score\" : \"1-0\", \"scorer\" : \"Ronaldo\", \"time\" : \"44\"}}}";*/
// get all registration Device ID from database
ArrayList<String> deviceId = DBRegistration.getInstance().fetchRegId();
String data = "{\"registration_ids\":"+ deviceId +", \"data\":" +
"{\"data\":{\"update\" : \"true\", " +
"\"file\": \"http://192.168.4.210:8080/FileDownload/DownloadFile?path=GCMSample.apk\"}}}";
String result = DBRegistration.getInstance().sendRequest(url, data, apHeaders);**
System.out.println("responseC"+ result);
out.println(result);
out.flush();
字符串apServerUrl=”https://android.googleapis.com/gcm/send";
public String sendRequest(String apServerUrl, String payload, Properties headers) {
// Setup Http URL connection
HttpURLConnection connection = null;
// Enable proxy if it needed.
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(PROXY_URL, PROXY_PORT));
try {
URL url = new URL(apServerUrl);
// Enable proxy if needed.
connection = (HttpURLConnection) url.openConnection(proxy);
//connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
connection.setDoOutput(true);
Object[] keys = headers.keySet().toArray();
for (int i = 0; i < keys.length; i++) {
connection.setRequestProperty((String) keys[i],
(String) headers.get(keys[i]));
}
//connection.setRequestProperty("Content-Length", ""+ payload.length());
} catch (Exception e) {
System.out.println("Failed setting up HTTP Connection\n" + e);
}
// Send the Request
String line = "";
String returnedResponse = "";
BufferedReader reader = null;
System.out.println("Request: " + payload);
try {
OutputStream os = connection.getOutputStream();
os.write(payload.toString().getBytes("UTF-8"));
os.close();
int status = connection.getResponseCode();
if (status != 200) {
System.out.println("HTTP Error code " + status
+ " received, transaction not submitted");
reader = new BufferedReader(new InputStreamReader(connection
.getErrorStream()));
} else {
reader = new BufferedReader(new InputStreamReader(connection
.getInputStream()));
}
while ((line = reader.readLine()) != null) {
returnedResponse += line;
}
} catch (Exception e) {
returnedResponse = e.getMessage();
System.out.println(e);
} finally {
try {
if (reader != null)
reader.close();
if (connection != null)
connection.disconnect();
} catch (Exception e) {
returnedResponse = e.getMessage();
System.out.println(e);
}
}
System.out.println(returnedResponse);
return returnedResponse;
}
从GCM服务器到我的应用服务器的响应。
{"multicast_id":6552291927399218343,"success":13,"failure":0,"canonical_ids":0,"results":[{"message_id":"0:1356332586480671%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586480674%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481759%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586480807%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481944%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586480996%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481939%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586482000%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481997%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481942%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586482003%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481948%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586480995%79fa3a68f9fd7ecd"}]}
在留档http://developer.android.com/google/gcm/gcm.html#response上,成功是指在没有错误的情况下处理的消息数。也许在这种情况下,GCM会向相同的ID发送8次消息。
从GCM发送到服务器的响应是什么样子的?这是可能的,你有相同的设备注册8不同的ID的不同时间,这似乎最有可能的原因给我。
您还应该查看发送到GCM服务器的代码,以确保没有八次发送相同的注册ID。
此处记录了响应格式:https://developer.android.com/google/gcm/gcm.html#response
基于此,我将查看您是否收到任何规范Id,这将有助于向您显示您已多次注册同一设备。您可以在这里阅读更多关于如何处理规范Id的内容:android GCM获取规范Id的原始Id
我试图为BillingClient v.2.2.0和Kotlin协同程序编写一个包装: 正如您所见,当我试图查询购买或购买时,我确保客户已经准备好。但在生产中存在许多错误: 我试图了解问题的原因,得到了if将被多次调用。可能存在异常。我一直想知道这是怎么可能的,因为我每次调用都会创建新的侦听器?我无法在emulator或测试设备上重现此问题。有人能解释一下这里发生了什么,以及如何解决吗?
我正在尝试在像这样: 然后在我的它呈现: 我正在将我的fetch记录到控制台中,它被调用了三次。流程是我在登录页面上(加载时挂载一次),我登录,它将我重定向到自己呈现的主页。此时,我在控制台中看到:
我有一个代码,在那里我处理多个线程。一个线程等待它所依赖的其他一些线程的执行。 线程的运行代码如下所示 很少有其他线程等待这个线程在相同的方法中完成执行,如图所示,通过调用join()来执行run()。 假设这个线程依赖于另外三个线程,它正在等待它们在thread.join()中完成执行。即nameList大小为3,但此线程也执行了3次操作。它在for循环的外部。 我用另一种方法启动这个线程,比如
问题内容: 我知道关于“多次调用getView”的问题很少,但是我的问题没什么不同。 我有一个带有自定义行的自定义listView(使用row_layout.xml)。通常效果很好。最初,我多次调用getView时遇到问题,并使用在stackoverflow中看到的一种方法解决了该问题。(使用’usedPositions’数组)。 现在,我在日志中看到这种情况:getView pos 0,getV
我有一个,它有一个字段,如下所示 我还有几个,它们是继承的的部分。 在其中一个如果这些片断中,我将在片断的方法中进行另一个调用,如下所示 当第一次创建片段时,只调用一次,但片段会转到后台,然后返回,它会被多次调用,这会引起问题。 如有任何帮助,我们将不胜感激。
问题内容: 关于的简单代码。是SessionScoped Bean,是RequestScoped Bean 内 我的问题是被叫很多。会告诉我们该方法在什么阶段被调用。首次加载页面时,请在阶段6-进行约 5次 呼叫。该页面上有一个,因此我在其中键入一些内容,然后单击(命令按钮)。然后在阶段1-> 4期间再呼叫 12次 。每个阶段调用此方法 3-4次 。然后,此属性的get 方法的setter方法(即