当前位置: 首页>>代码示例>>Java>>正文


Java JPushInterface.onResume方法代码示例

本文整理汇总了Java中cn.jpush.android.api.JPushInterface.onResume方法的典型用法代码示例。如果您正苦于以下问题:Java JPushInterface.onResume方法的具体用法?Java JPushInterface.onResume怎么用?Java JPushInterface.onResume使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cn.jpush.android.api.JPushInterface的用法示例。


在下文中一共展示了JPushInterface.onResume方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
public void onResume(boolean multitasking) {
  shouldCacheMsg = false;
  Log.i(TAG, "---------------- onResume" + "-" + openNotificationAlert
    + "-" + notificationAlert);
  if (isStatisticsOpened && multitasking) {
    JPushInterface.onResume(NXTPushPlugin.getActivity());
  }
  if (openNotificationAlert != null) {
    notificationAlert = null;
    transmitNotificationOpen(openNotificationTitle, openNotificationAlert,
      openNotificationExtras);
  }
  if (notificationAlert != null) {
    transmitNotificationReceive(notificationTitle, notificationAlert,
      notificationExtras);
  }
}
 
开发者ID:pengkobe,项目名称:nxtpush-cordova-plugin,代码行数:18,代码来源:JPushUtil.java

示例2: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
protected void onResume()
{
	super.onResume();
	JPushInterface.onResume(this);
	LinkedList<NewsTypeItem> typeItems = NewsTypeItem.getNewsTypeItems(this);
	NewsTypeItemDaoImpl newsTypeItemDao = new NewsTypeItemDaoImpl(new DBHelper(this));
	boolean update = (null == newsTypeItemDao.getNewsTypeItems() || (typeItems != null && newsTypeItemDao.getNewsTypeItems().size() != typeItems.size()));

	if (update || !mPreferences.contains(PREF_FIRST_INSERT_IMG_URL) || !mPreferences.getBoolean(PREF_FIRST_INSERT_IMG_URL, false))
	{
		insertImgUrls();
	}
	if (update || !mPreferences.contains(PREF_FIRST_INSERT_NEWS_TYPE) || !mPreferences.getBoolean(PREF_FIRST_INSERT_NEWS_TYPE, false))
	{
		insertNewsType(newsTypeItemDao, typeItems);
	}
	GoogleApplication.mIsOnlyAndroid = mPreferences.getBoolean(PREF_ONLY_ANDROID, false);
	GoogleApplication.mIsExactBus = mPreferences.getBoolean(PREF_EXACT_BUS, false);
}
 
开发者ID:haikuowuya,项目名称:like_googleplus_layout,代码行数:20,代码来源:BaseActivity.java

示例3: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
protected void onResume() {
    super.onResume();
    JPushInterface.onResume(this);
    if (LetvConfig.isUmeng()) {
        MobclickAgent.onResume(this);
    }
}
 
开发者ID:JackChan1999,项目名称:letv,代码行数:8,代码来源:SplashActivity.java

示例4: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
    super.onResume();
    MobclickAgent.onPageStart(getClass().getSimpleName());
    MobclickAgent.onResume(this);
    JPushInterface.onResume(this);
}
 
开发者ID:LegendKe,项目名称:MyTravelingDiary,代码行数:8,代码来源:UmengActivity.java

示例5: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
    super.onResume();
    JPushInterface.onResume(getApplicationContext());
    isForeground = true;

}
 
开发者ID:yuchenfw,项目名称:QuickNews,代码行数:8,代码来源:MainActivity.java

示例6: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
	super.onResume();

	JPushInterface.onResume(this);
	autoLogin();

	cleanuserthing();
}
 
开发者ID:gizwits,项目名称:GOpenSource_AppKit_Android_AS,代码行数:10,代码来源:GosUserLoginActivity.java

示例7: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
public void onResume(Context context) {
    if (App.getApp() == null || !App.getApp().isJPushEneabled()) {
        return;
    }
    JPushInterface.onResume(context);
}
 
开发者ID:wavinsun,项目名称:MUtils,代码行数:8,代码来源:JPushHelperImpl.java

示例8: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
	super.onResume();

	JPushInterface.onResume(this);
	autoLogin();
}
 
开发者ID:gizwits,项目名称:gokit-android,代码行数:8,代码来源:GosUserLoginActivity.java

示例9: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
    super.onResume();
    JPushInterface.onResume(this);
}
 
开发者ID:Jay-Ping,项目名称:newIPlay,代码行数:6,代码来源:BaseActivity.java

示例10: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
    super.onResume();
    JPushInterface.onResume(getApplicationContext());
}
 
开发者ID:liupengandroid,项目名称:ywApplication,代码行数:6,代码来源:SplashActivity.java

示例11: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
	JPushInterface.onResume(this);
	super.onResume();
}
 
开发者ID:turingttc,项目名称:newshanxun,代码行数:6,代码来源:MainActivity.java

示例12: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
    super.onResume();
    MobclickAgent.onResume(this);//统计时长
    JPushInterface.onResume(this);
}
 
开发者ID:v991314,项目名称:3DGameInfo,代码行数:7,代码来源:MainActivity.java

示例13: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
protected void onResume() {
    super.onResume();
    JPushInterface.onResume(this);
}
 
开发者ID:yuqirong,项目名称:RxNews,代码行数:5,代码来源:BaseActivity.java

示例14: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
	super.onResume();
	JPushInterface.onResume(this);
}
 
开发者ID:leleliu008,项目名称:Newton_for_Android_AS,代码行数:6,代码来源:SplashActivity.java

示例15: onResume

import cn.jpush.android.api.JPushInterface; //导入方法依赖的package包/类
@Override
protected void onResume() {
    JPushInterface.onResume(this);
    super.onResume();
}
 
开发者ID:jpush,项目名称:jmessage-android-uikit,代码行数:6,代码来源:DemoActivity.java


注:本文中的cn.jpush.android.api.JPushInterface.onResume方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。