Redmi Pad 2 Pro: Specs, Price & New Features Revealed

by Sophie Williams
0 comments

Xiaomi has unveiled a important update to its tablet line in India, launching the Redmi Pad 2 Pro alongside recent smartphone releases. the new tablet represents a major redesign and boasts upgraded specifications, signaling Xiaomi’s increased focus on the premium tablet market.The Redmi Pad 2 Pro features a Snapdragon 7s Gen 4 processor and starts at ₹24,999, targeting students and entertainment enthusiasts with its extended battery life and enhanced features. Notably, Xiaomi is offering an unusually long software support commitment of 5 years of system updates and 7 years of security patches.

                            <p>Xiaomi has launched a significant update to its tablet lineup in India, alongside new smartphone releases, introducing the Redmi Pad 2 Pro. This isn’t a simple refresh; it represents a substantial redesign and upgrade in specifications.</p><h2><span style="color:hsl(0,75%,60%);">Redmi Pad 2 Pro Delivers Enhanced Performance with a New Processor</span></h2><p>Xiaomi has significantly boosted the Redmi Pad 2 Pro’s performance by replacing the previous processor with the Snapdragon 7s Gen 4. This powerful chip, built on a 4nm process, ensures smooth operation even with demanding multitasking. The move underscores Xiaomi’s commitment to providing a premium tablet experience at a competitive price point.</p><p>The Redmi Pad 2 Pro features a large 12.1-inch display with a 2.5K resolution and a 120Hz refresh rate, making scrolling through apps and enjoying media exceptionally fluid. </p><p>Models equipped with Matte Glass utilize AG nano-texture technology, reducing reflections by up to 97%, which greatly improves readability of documents or ebooks in bright lighting conditions.</p><p>The tablet boasts a quad-speaker system with a 300% volume boost, delivering an immersive audio experience without the need for external speakers – ideal for movies and series. </p><figure class="image"><img src="https://media.elbalad.news/ArticleUpload/202618image_731_042233.jpg"/><figcaption><strong>Redmi Pad 2 Pro</strong></figcaption></figure><p>Powering the Redmi Pad 2 Pro is a massive 12000mAh battery, providing over 14 hours of continuous video playback. It also supports 27W wired reverse charging, allowing the device to function as a power bank for smartphones when needed, and features 33W fast charging, though a full charge may require overnight charging.</p><p>The Redmi Pad 2 Pro runs HyperOS 2, based on Android 15. Xiaomi is promising 5 years of system updates and 7 years of security updates – a level of long-term support typically reserved for flagship devices from Apple and Samsung. This extended support cycle is a notable benefit for users seeking a durable and secure tablet experience.</p><p>The Redmi Pad 2 Pro starts at ₹24,999 in India, targeting students and video enthusiasts who require extended battery life for uninterrupted viewing.</p>


                        </div><script type="text/javascript">
        replaceOembeds();
        function replaceOembeds() {
            var allEmbeds = document.getElementsByTagName("OEMBED");
            while (allEmbeds.length != 0) {
                replaceOembedWithHtml(allEmbeds[0], extractLinkFromOembed(allEmbeds[0]));
                allEmbeds = document.getElementsByTagName("OEMBED");
            }
            runYoutubeLazyLoad();
            setTimeout(function () {
                loadfbApi();
            }, 4000);
        }

        function replaceOembedWithHtml(element, sourceData) {
            if (sourceData.source.toLowerCase() === "youtube") {
                var html="<div class="yt-embed"><div class="embed-wrap">" +
                    '<div class="embed-container">' +
                    '<div class="youtube" data-embed="' + sourceData.id + '">' +
                    '<div class="play-button"> ' +
                    '<svg class="icon"><use xlink:href="http://www.elbalad.news/themes/elbalad/assets/images/icons.svg#youtube"></use></svg>' +
                    '</div>' +
                    '</div></div></div></div>';
                replaceElementWithHtml(element, html);
            } else if (sourceData.source.toLowerCase() === "instagram") {
                var html="<div class="instagram-embed"><iframe class="lazyload" width="320" height="440" data-src="https://instagram.com/p/" + sourceData.id + '/embed" frameborder="0"></iframe></div>';
                replaceElementWithHtml(element, html);
            } else if (sourceData.source.toLowerCase() === "twitter") {
                var html="<div class="tw-embed"><iframe border=0 frameborder=0 height=250 width=550 src="https://twitframe.com/show?url=" + encodeURI(sourceData.url) + '"></iframe></div>';
                replaceElementWithHtml(element, html);
            } else if (sourceData.source.toLowerCase() === "facebook") {
                var html="<div class="fb-embed"><div class="fb-video" data-href="" + sourceData.url + '" data-width="500" data-allowfullscreen="true" data-autoplay="true" data-show-captions="true"></div></div>'
                replaceElementWithHtml(element, html);
            } else {
                replaceElementWithHtml(element, "");
            }
        }

        function extractLinkFromOembed(element) {
            return getUrlSource(element.getAttribute("url"));
        }

        function getUrlSource(url) {
            var ytRegex = /http(?:s?)://(?:www.)?youtu(?:be.com/watch?v=|.be/)([w-_]*)(&(amp;)?‌​[w?‌​=]*)?/;
            var instaRegex = /(https?://www.)?instagram.com(/p/(w+)/?)/;
            var twitterRegex = /twitter.com/.*/status(?:es)?/([^/?]+)/;
            var fbRegex = /^https?://www.facebook.com.*/(video(s)?|watch|story|posts)(.php?|/).+$/;

            if (ytRegex.test(url)) {
                return {
                    source: "Youtube",
                    url: url,
                    id: ytRegex.exec(url)[1]
                };
            }

            if (instaRegex.test(url)) {
                return {
                    source: "Instagram",
                    url: url,
                    id: instaRegex.exec(url)[3]
                };
            }

            if (twitterRegex.test(url)) {
                return {
                    source: "Twitter",
                    url: url,
                    id: twitterRegex.exec(url)[1]
                };
            }

            if (fbRegex.test(url)) {
                return {
                    source: "Facebook",
                    url: url,
                    id: fbRegex.exec(url)[1]
                };

            }

            return {
                source: "Unknown",
                url: url,
                id: ""
            };
        }

        function replaceElementWithHtml(element, html) {
            var str = html;
            var Obj = element; //any element to be fully replaced
            if (Obj.outerHTML) { //if outerHTML is supported
                Obj.outerHTML = str; ///it's simple replacement of whole element with contents of str var
            } else { //if outerHTML is not supported, there is a weird but crossbrowsered trick
                var tmpObj = document.createElement("div");
                tmpObj.innerHTML = '<!--THIS DATA SHOULD BE REPLACED-->';
                ObjParent = Obj.parentNode; //Okey, element should be parented
                ObjParent.replaceChild(tmpObj, Obj); //here we placing our temporary data instead of our target, so we can find it then and replace it into whatever we want to replace to
                ObjParent.innerHTML = ObjParent.innerHTML.replace('<div><!--THIS DATA SHOULD BE REPLACED--></div>', str);
            }
        }
        function loadfbApi() {
            var js = document.createElement('script');
            js.src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.2";
            document.body.appendChild(js);
        }
        function runYoutubeLazyLoad() {
            /// youtube lazyload
            var youtube = document.querySelectorAll(".youtube");

            for (var i = 0; i < youtube.length; i++) {

                var source = "https://img.youtube.com/vi/" + youtube[i].dataset.embed +
                    "/0.jpg";

                var image = new Image();
                image.src = "https://www.elbalad.news/themes/elbalad/assets/images/no.jpg";
                image.classList.add('lazyload');
                image.setAttribute("data-src", source);
                image.setAttribute("alt", "youtube");
                image.addEventListener("load", function () {
                    youtube[i].appendChild(image);
                }(i));

                youtube[i].addEventListener("click", function () {
                    var iframe = document.createElement("iframe");
                    iframe.setAttribute("frameborder", "0");
                    iframe.setAttribute("allowfullscreen", "");
                    iframe.setAttribute("src", "https://www.youtube.com/embed/" + this.dataset
                        .embed + "?rel=0&showinfo=0&autoplay=1");
                    this.innerHTML = "";
                    this.appendChild(iframe);
                });
            };
        }
    </script><script async src="//www.instagram.com/embed.js"></script>

You may also like

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More

Privacy & Cookies Policy