Java Code Examples for cn.jpush.android.api.JPushInterface#onResume()

The following examples show how to use cn.jpush.android.api.JPushInterface#onResume() . 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: SplashActivity.java    From letv with Apache License 2.0 5 votes vote down vote up
protected void onResume() {
    super.onResume();
    JPushInterface.onResume(this);
    if (LetvConfig.isUmeng()) {
        MobclickAgent.onResume(this);
    }
}
 
Example 2
Source File: MainActivity.java    From QuickNews with MIT License 5 votes vote down vote up
@Override
protected void onResume() {
    super.onResume();
    JPushInterface.onResume(getApplicationContext());
    isForeground = true;

}
 
Example 3
Source File: GosUserLoginActivity.java    From GOpenSource_AppKit_Android_AS with MIT License 5 votes vote down vote up
@Override
protected void onResume() {
	super.onResume();

	JPushInterface.onResume(this);
	autoLogin();

	cleanuserthing();
}
 
Example 4
Source File: GosUserLoginActivity.java    From gokit-android with MIT License 5 votes vote down vote up
@Override
protected void onResume() {
	super.onResume();

	JPushInterface.onResume(this);
	autoLogin();
}
 
Example 5
Source File: WelcomeActivity.java    From Social with Apache License 2.0 4 votes vote down vote up
@Override
protected void onResume() {
    super.onResume();
    StatService.onResume(this);//统计activity页面
    JPushInterface.onResume(this);
}
 
Example 6
Source File: DemoActivity.java    From jmessage-android-uikit with MIT License 4 votes vote down vote up
@Override
protected void onResume() {
    JPushInterface.onResume(this);
    super.onResume();
}
 
Example 7
Source File: DemoActivity.java    From jmessage-android-uikit with MIT License 4 votes vote down vote up
@Override
protected void onResume() {
    JPushInterface.onResume(this);
    super.onResume();
}
 
Example 8
Source File: GosUserLoginActivity.java    From Gizwits-SmartBuld_Android with MIT License 4 votes vote down vote up
@Override
protected void onResume() {
	super.onResume();
	JPushInterface.onResume(this);
	autoLogin();
}