檢視 IDGraph Android Tracking Code 的原始碼
←
IDGraph Android Tracking Code
跳至導覽
跳至搜尋
由於下列原因,您沒有權限進行編輯此頁面的動作:
您請求的操作只有這個群組的使用者能使用:
使用者
您可以檢視並複製此頁面的原始碼。
在回報Log前,必須讓SDK進行初始化,您需要執行下列函式 IDGraphTracker.getInstance().init(Context, <PROFILE_ID>, isDebug); :第一個參數為Context :第二個參數請填入你的Profile ID (可向您的TAMedia窗口詢問) :第三個為boolean值,設為true時,每次回報會出現Toast訊息框以確認回報是否成功 <br> 若要進行回報,需呼叫下列函式 IDGraphTracker.getInstance().reportTrackLog(); <br> <br> 上述提及的函式,可參考下列方式加入您的專案 *<big><u>Without Application Class</u></big> :若APP專案未擁有自己的Application class,可以將追蹤碼放在自己的APP首頁,也就是第一個出現的Activity,透過此方式,每次APP重啟時都會觸發回報,程式碼如下: <b><MainActivity.java></b> public class MainActivity extends AppCompatActivity { private static final String PROFILE_ID = "<b><Your Profile ID></b>"; private static final boolean isDebug = false; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // Initial IDGraphTracker.getInstance().init(this, PROFILE_ID, isDebug); // Send Tracking Log IDGraphTracker.getInstance().reportTrackLog(); } Other Code ... } <br> *<big><u>With Application Class</u></big> :若APP專案有自己的Application class,可將追蹤碼放在此class,由於Application的執行時間是在Activity啟動前,因此會比Without Application Class更早回報,但是<span style="color:red;">如果APP是透過Back鍵關掉的話,由於Application還會留在系統一小段時間, 導致使用者短時間內再次打開APP時並不會觸發回報</span>, 必須等待系統將其回收或是使用者自行把APP刷掉(在桌面點選Menu Button, 再將APP上滑關閉), Application才算是真正結束,程式碼如下:<br> <b><MyCustomApplication.java></b> public class MyCustomApplication extends Application { private static final String PROFILE_ID = "<b><Your Profile ID></b>"; private static final boolean isDebug = false; // Called when the application is starting, before any other application objects have been created. // Overriding this method is totally optional! @Override public void onCreate() { super.onCreate(); // Initial IDGraphTracker.getInstance().init(this, PROFILE_ID, isDebug); // Send Tracking Log IDGraphTracker.getInstance().reportTrackLog(); } Other Code ... } <b><AndroidManifest.xml></b> <application android:name="<b>.MyCustomApplication</b>" android:allowBackup="true" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme" > Other Code ... </application> <br> <br> [[IDGraph_Android_SDK_Developer_Guide|回IDGraph Android SDK首頁]]
返回到「
IDGraph Android Tracking Code
」。
導覽選單
個人工具
登入
命名空間
頁面
討論
變體
已展開
已摺疊
視圖
閱讀
檢視原始碼
檢視歷史
更多
已展開
已摺疊
搜尋
導覽
首頁
近期變更
隨機頁面
有關 MediaWiki 的說明
工具
連結至此的頁面
相關變更
特殊頁面
頁面資訊