هواوی ۱۹۰ میلیون موبایل در سال ۲۰۲۰می فروشد

به نقل از سایت اخبار فناوری اطلاعات و ارتباطات ، فن آوری های نوین :    

به گزارش خبرگزاری مهر  به نقل از انگجت، تصمیم دولت آمریکا برای تحریم هواوی به ایجاد فاجعه ای در این شرکت چینی منجر نشده اما به نظر می رسد سال ۲۰۲۰ میلادی نوید بخش خبرهای خوبی برای این شرکت نیست.

گزارشی جدید ادعا می کند طبق پیش بینی هواوی،  فروش موبایل های هوشمند این شرکت در سال جاری میلادی ۲۰ درصد کاهش می یابد. دلیل این امر ممنوعیت همکاری هواوی با گوگل و دیگر شرکت های آمریکایی است هرچند این شرکت در سال ۲۰۱۹ میلای بیش از ۲۴۰ میلیون موبایل فروخت، اما اکنون پیش بینی می شود  در۲۰۲۰ میلادی فقط ۱۹۰ تا ۲۰۰ میلیون دستگاه بفروشد.

البته هواوی از اظهار نظر در این باره خودداری کرده است.

با این وجود همچنان هواوی به عرضه موبایل های خود ادامه می دهد و برای مقابله با تحریم های آمریکا اپ استوری مخصوص اپلیکیشن های هواوی را در موبایل های جدیدش عرضه کرده است.

101
0 0

لینک های مفید

طراحی لوگو دراصفهان

بانک اطلاعات مشاغل رایگان
لوازم یدکی جک JAC

کتاب های ادبیات آمریکای لاتین

سنگ چینی

کرم گریم


$(window).load(function () { 'use strict'; function activeStickyKit() { $('[data-sticky_column]').stick_in_parent({ parent: '[data-sticky_parent]' }); // bootstrap col position $('[data-sticky_column]') .on('sticky_kit:bottom', function (e) { $(this).parent().css('position', 'static'); }) .on('sticky_kit:unbottom', function (e) { $(this).parent().css('position', 'relative'); }); }; activeStickyKit(); function detachStickyKit() { $('[data-sticky_column]').trigger("sticky_kit:detach"); }; var screen = 768; var windowHeight, windowWidth; windowWidth = $(window).width(); if ((windowWidth < screen)) { detachStickyKit(); } else { activeStickyKit(); } // windowSize // window resize function windowSize() { windowHeight = window.innerHeight ? window.innerHeight : $(window).height(); windowWidth = window.innerWidth ? window.innerWidth : $(window).width(); } windowSize(); // Returns a function, that, as long as it continues to be invoked, will not // be triggered. The function will be called after it stops being called for // N milliseconds. If `immediate` is passed, trigger the function on the // leading edge, instead of the trailing. function debounce(func, wait, immediate) { var timeout; return function () { var context = this, args = arguments; var later = function () { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; $(window).resize(debounce(function () { windowSize(); $(document.body).trigger("sticky_kit:recalc"); if (windowWidth < screen) { detachStickyKit(); } else { activeStickyKit(); } }, 250)); });