我已经在我的Android应用程序中实现了Flurry。它将事件发送到flurry服务器,但仅在第二次启动应用程序时。例如:如果用户在9月1日使用该应用程序并在10月1日再次使用该应用程序,那么9月1日的统计数据将在10月1日发送,但我希望在应用程序关闭或实时后可以使用事件。 / p>
这是我的代码:
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.
如何实时或在应用程序退出时将事件数据发送到服务器。
答案 0 :(得分:1)
删除 onStop 和 onStart 功能,因为这些功能在最新的flurry SDK中已弃用,请勿在关闭之前直接关闭app.press主页按钮应用。它会起作用