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

The following examples show how to use com.umeng.analytics.MobclickAgent#onPageStart() . 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: BaseActivity.java    From NewFastFrame with Apache License 2.0 5 votes vote down vote up
@Override
protected void onResume() {
    super.onResume();
    if (needRecord()) {
        MobclickAgent.onPageStart(this.getClass().getName());
    }
    UMGameAgent.onResume(this);
}
 
Example 2
Source File: ImageViewPagerActivity.java    From Jide-Note with MIT License 5 votes vote down vote up
@Override
protected void onResume() {
    super.onResume();

    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);// 淡化status bar 和 navigation bar

    MobclickAgent.onPageStart("ImageViewPagerActivity"); //统计页面(仅有Activity的应用中SDK自动调用,不需要单独写)
    MobclickAgent.onResume(this);
}
 
Example 3
Source File: UmengAnalytics.java    From MiBandDecompiled with Apache License 2.0 5 votes vote down vote up
public static void startPage(String s)
{
    if (!b)
    {
        return;
    } else
    {
        Log.v("UmengAnalyticsTracker", (new StringBuilder()).append("Start Page : ").append(s).toString());
        MobclickAgent.onPageStart(s);
        return;
    }
}
 
Example 4
Source File: BaseFragment.java    From Android-VMLib with Apache License 2.0 5 votes vote down vote up
@Override
public void onResume() {
    super.onResume();
    if (Platform.DEPENDENCY_UMENG_ANALYTICS && !useUmengManual) {
        MobclickAgent.onPageStart(pageName);
    }
}
 
Example 5
Source File: MobclickAgentProxy.java    From android-project-wo2b with Apache License 2.0 5 votes vote down vote up
public static void onPageStart(String arg0)
{
	if (!DEBUG)
	{
		MobclickAgent.onPageStart(arg0);
	}
}
 
Example 6
Source File: UpdateNickActivity.java    From QiQuYing with Apache License 2.0 4 votes vote down vote up
@Override
protected void onResume() {
	MobclickAgent.onPageStart("UpdateNickActivity"); //统计页面
	super.onResume();
}
 
Example 7
Source File: PreferenceActivity.java    From talk-android with MIT License 4 votes vote down vote up
@Override
public void onResume() {
    super.onResume();
    MobclickAgent.onResume(this);
    MobclickAgent.onPageStart(getClass().getName());
}
 
Example 8
Source File: SettingsFragment.java    From githot with Apache License 2.0 4 votes vote down vote up
public void onResume() {
    super.onResume();
    MobclickAgent.onPageStart("SettingsFragment"); //统计页面
}
 
Example 9
Source File: RichContentActivity.java    From talk-android with MIT License 4 votes vote down vote up
@Override
public void onResume() {
    super.onResume();
    MobclickAgent.onResume(this);
    MobclickAgent.onPageStart(getClass().getName());
}
 
Example 10
Source File: MyCollectActivity.java    From QiQuYing with Apache License 2.0 4 votes vote down vote up
@Override
protected void onResume() {
	MobclickAgent.onPageStart("MyCollectActivity"); //统计页面
	super.onResume();
}
 
Example 11
Source File: MainActivity.java    From Android-Tech with Apache License 2.0 4 votes vote down vote up
@Override
public void onResume() {
    super.onResume();
    MobclickAgent.onPageStart(mPageName);
    MobclickAgent.onResume(mContext);
}
 
Example 12
Source File: BaseFragment.java    From NewsMe with Apache License 2.0 4 votes vote down vote up
@Override
public void onResume() {
    super.onResume();
    MobclickAgent.onPageStart(getClass().getSimpleName());
}
 
Example 13
Source File: SelectMemberActivity.java    From talk-android with MIT License 4 votes vote down vote up
@Override
public void onResume() {
    super.onResume();
    MobclickAgent.onResume(this);
    MobclickAgent.onPageStart(getClass().getName());
}
 
Example 14
Source File: HotUsersMainFragment.java    From githot with Apache License 2.0 4 votes vote down vote up
public void onResume() {
    super.onResume();
    MobclickAgent.onPageStart("HotUsersMainFragment"); //统计页面
}
 
Example 15
Source File: AboutActivity.java    From QiQuYing with Apache License 2.0 4 votes vote down vote up
@Override
protected void onResume() {
	MobclickAgent.onPageStart("AboutActivity"); //统计页面
	super.onResume();
}
 
Example 16
Source File: ResetPwdActivity.java    From freeiot-android with MIT License 4 votes vote down vote up
@Override
protected void onResume() {
	super.onResume();
	MobclickAgent.onPageStart(AnalyticsUtils.AnalyticsViewKeys.VIEW_RESET_PWD_ACTIVITY);
	MobclickAgent.onResume(this);
}
 
Example 17
Source File: SettingFragment.java    From light-novel-library_Wenku8_Android with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void onResume() {
	super.onResume();
       MobclickAgent.onPageStart("Bookshelf");
}
 
Example 18
Source File: ReSetPwdActivity.java    From QiQuYing with Apache License 2.0 4 votes vote down vote up
@Override
protected void onResume() {
	MobclickAgent.onPageStart("ReSetPwdActivity"); //统计页面
	super.onResume();
}
 
Example 19
Source File: BaseFragment.java    From GankMeizhi with Apache License 2.0 4 votes vote down vote up
public void onResume() {
    super.onResume();
    MobclickAgent.onPageStart(getClass().getSimpleName()); //统计页面,"MainScreen"为页面名称,可自定义
}
 
Example 20
Source File: AppBaseActivity.java    From browser with GNU General Public License v2.0 3 votes vote down vote up
@Override
protected void onResume() {
	// HSCoreService
	super.onResume();

	MobclickAgent.onPageStart(this.getClass().getName());

	MobclickAgent.onResume(this);


	mBaseActivity.onResume();

}