當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。