Java Code Examples for com.umeng.analytics.MobclickAgent#onEventBegin()

The following examples show how to use com.umeng.analytics.MobclickAgent#onEventBegin() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: UmengAnalytics.java    From MiBandDecompiled with Apache License 2.0 6 votes vote down vote up
public static void startEvent(Context context, String s, String s1)
{
    if (!b)
    {
        return;
    }
    Log.v("UmengAnalyticsTracker", (new StringBuilder()).append("Start Event : ").append(s).append(", Value : ").append(s1).toString());
    if (s1 == null)
    {
        MobclickAgent.onEventBegin(context, s);
        return;
    } else
    {
        MobclickAgent.onEventBegin(context, s, s1);
        return;
    }
}
 
Example 2
Source File: MobclickAgentProxy.java    From android-project-wo2b with Apache License 2.0 5 votes vote down vote up
public static void onEventBegin(Context arg0, String arg1)
{
	if (!DEBUG)
	{
		MobclickAgent.onEventBegin(arg0, arg1);
	}
}
 
Example 3
Source File: MobclickAgentProxy.java    From android-project-wo2b with Apache License 2.0 5 votes vote down vote up
public static void onEventBegin(Context arg0, String arg1, String arg2)
{
	if (!DEBUG)
	{
		MobclickAgent.onEventBegin(arg0, arg1, arg2);
	}
}