在应用程序重新启动之前,Flurry 不会向服务器发送事件
Flurry not sending events to server till application restart
我已经在我的 Android app.It 中实现了 Flurry 发送事件到 Flurry 服务器,但仅当应用程序第二次启动时。例如:如果用户在 9 月 1 日使用该应用程序并在 10 月 1 日再次使用它,那么 9 月 1 日的统计数据将在 10 月 1 日发送,但我希望事件在应用程序关闭后或实时可用。
这是我的代码:
package com.example.flurry;
import com.flurry.android.FlurryAgent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
public class Flurry extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_flurry);
FlurryAgent.setLogEnabled(true);
FlurryAgent.init(getBaseContext(), "FS3C2XNX8HRPD6GDJ7C2");
Button check = (Button) findViewById(R.id.button1);
Button stop = (Button) findViewById(R.id.button2);
check.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
FlurryAgent.logEvent("check button pressed");
// Perform action on click
}
});
stop.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
FlurryAgent.logEvent("stop button pressed");
}
});
}
@Override
public void onStart()
{
super.onStart();
FlurryAgent.setLogEnabled(true);
FlurryAgent.setLogEvents(true);
FlurryAgent.setLogLevel(Log.VERBOSE);
FlurryAgent.onStartSession(getBaseContext(), "FS3C2***************");
// your code
}
@Override
public void onStop()
{
super.onStop();
FlurryAgent.onEndSession(this);
// your code
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.flurry, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
当我在 logcat 中重新启动应用程序时,出现以下行:
09-02 10:28:31.817: W/FlurryAgent(5684): Analytics report sent.
如何实时或在应用程序退出时向服务器发送事件数据。
删除 onStop 和 onStart 函数,因为这些函数在最新的 flurry SDK 中已弃用,并且不要直接关闭 app.press 关闭应用程序之前的主页按钮。它会起作用
我已经在我的 Android app.It 中实现了 Flurry 发送事件到 Flurry 服务器,但仅当应用程序第二次启动时。例如:如果用户在 9 月 1 日使用该应用程序并在 10 月 1 日再次使用它,那么 9 月 1 日的统计数据将在 10 月 1 日发送,但我希望事件在应用程序关闭后或实时可用。
这是我的代码:
package com.example.flurry;
import com.flurry.android.FlurryAgent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
public class Flurry extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_flurry);
FlurryAgent.setLogEnabled(true);
FlurryAgent.init(getBaseContext(), "FS3C2XNX8HRPD6GDJ7C2");
Button check = (Button) findViewById(R.id.button1);
Button stop = (Button) findViewById(R.id.button2);
check.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
FlurryAgent.logEvent("check button pressed");
// Perform action on click
}
});
stop.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
FlurryAgent.logEvent("stop button pressed");
}
});
}
@Override
public void onStart()
{
super.onStart();
FlurryAgent.setLogEnabled(true);
FlurryAgent.setLogEvents(true);
FlurryAgent.setLogLevel(Log.VERBOSE);
FlurryAgent.onStartSession(getBaseContext(), "FS3C2***************");
// your code
}
@Override
public void onStop()
{
super.onStop();
FlurryAgent.onEndSession(this);
// your code
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.flurry, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
当我在 logcat 中重新启动应用程序时,出现以下行:
09-02 10:28:31.817: W/FlurryAgent(5684): Analytics report sent.
如何实时或在应用程序退出时向服务器发送事件数据。
删除 onStop 和 onStart 函数,因为这些函数在最新的 flurry SDK 中已弃用,并且不要直接关闭 app.press 关闭应用程序之前的主页按钮。它会起作用