| | |
| | | |
| | | // 是否可以显示华为的广告 |
| | | public static boolean canShowAdHuaWei(Context context, AdPositionEnum position) { |
| | | return canShowAd(context, "huawei", position); |
| | | } |
| | | |
| | | public static void setAdHuaWeiShown(Context context, AdPositionEnum position) { |
| | | setAdShown(context, "huawei", position); |
| | | } |
| | | |
| | | |
| | | // 是否可以显示华为的广告 |
| | | public static boolean canShowAd(Context context, String channel, AdPositionEnum position) { |
| | | SharedPreferences share = context.getSharedPreferences("adConfig", Context.MODE_PRIVATE); |
| | | Long lastTime = share.getLong("huawei_show_time_" + position.name(), 0); |
| | | long lastTime = share.getLong(channel + "_show_time_" + position.name(), 0); |
| | | if (TimeUtils.millisToStringDate(System.currentTimeMillis(), "yyyyMMdd").equalsIgnoreCase(TimeUtils.millisToStringDate(lastTime, "yyyyMMdd"))) { |
| | | //同一天 |
| | | return false; |
| | |
| | | return true; |
| | | } |
| | | |
| | | public static void setAdHuaWeiShown(Context context, AdPositionEnum position) { |
| | | public static void setAdShown(Context context, String channel, AdPositionEnum position) { |
| | | SharedPreferences share = context.getSharedPreferences("adConfig", Context.MODE_PRIVATE); |
| | | SharedPreferences.Editor editor = share.edit(); |
| | | editor.putLong("huawei_show_time_" + position.name(), System.currentTimeMillis()); |
| | | editor.putLong(channel + "_show_time_" + position.name(), System.currentTimeMillis()); |
| | | editor.commit(); |
| | | } |
| | | |