我評估亂舞和有它集成到測試項目亂舞無助於Android的
的活動:
public class TestFlurryActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v){
Hashtable<String, String> map = new Hashtable<String, String>();
for(int i = 0; i < 20; i++){
map.put("MappedKey"+i, "MappedValue"+i);
}
Log.d("Flurry", "Event2");
FlurryAgent.logEvent("buttonPressedEvent", map);
}
});
}
public void onStart()
{
super.onStart();
Log.d("Flurry", "Starting1");
FlurryAgent.onStartSession(this, "FlurryKey");
Log.d("Flurry", "Setting user");
FlurryAgent.setUserId("user1");
Log.d("Flurry", "Event1");
FlurryAgent.logEvent("Event1");
}
public void onStop()
{
super.onStop();
FlurryAgent.onEndSession(this);
}
}
清單:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.flurry"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".TestFlurryActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
當我上運行此示例我的設備看起來像亂七八糟的不工作。 除了我的日誌(「Flurry」標籤)之外,沒有任何亂七八糟的日誌記錄在logcat中。
我再次檢查了亂碼鍵,甚至試過「XXX」字符串,什麼也沒有。
我在做什麼錯?
您可以使用FlurryAgent.setLogEnabled(true)啓用在SDK中的日誌記錄; FlurryAgent.setLogLevel(Log.VERBOSE);'並在這裏粘貼一個來自logcat的代碼片段?謝謝! – spacemanaki 2012-07-12 13:27:59