Skip to main content

New features in android jelly bean


Android Jelly Bean 4.1 New Feature 



Android 4.1 is the fastest and smoothest version of Android yet. They’ve made improvements throughout the platform and added great new features for users and developers. This document provides a glimpse of what's new for developers.

 Faster, Smoother, More Responsive

Due to the success of Google’s “Project Butter”, the latest version of Android is just like the saying goes “as smooth as butter”. Jelly Bean is the most responsive and impressive version of Android to date coming with triple buffered graphics, extended vsync timing and intuitive touch that boosts your CPU at the next touch event to make sure lag is minimal.

Project Butter
·                                 Project Butter makes the User Interface on the Android 4.1 Jelly Bean devices just as smooth as butter. Yes, the team at Android has successfully accomplished a tedious task and has optimized the system wide frame rate to 60 FPS (frames-per-second) which will make using the OS, super fast by introducing VSync for triple buffering for more consistent frame rendering.
·                                 Widgets can now be realigned on the homescreen and they would automatically resize according to the space that the widget senses is available around it. Also a simple flick gesture upwards, would make the apps go off the homescreen.

Improved Text Input
·                                 Google has improved the text input with Jelly Bean and has included a predictive input with the keyboard, which suggests the next word that you might want to write automatically. Google has also announced support for 18 new languages which will be added to the keyboard including Hindi, Hebrew and Arabic to name a few.
·                                 The Google Voice Typing can now also be used in the offline mode. Now this would be a boon to all the users who used slow internet or do not have access to the internet at a given time.
·                                 Not letting the blind user feel neglected, Google has announced that it is adding support to Braille language to the OS and also new gestures have been added to allow the users to navigate the device easily.

Android Beam
·                                 Android Beam will now allow Jelly Bean users to transfer data including videos via NFC. Also users will be able to pair any NFC-enabled Bluetooth device by just tapping it.

Improved Notification and Search
·                                 Google has also announced that the Notifications on Jelly Bean are much more improved and have got a facelift. Users can now make a call from within the notification and also view multiple emails from different apps, all in one place. Also, apps now have greater access to the notification shade as they can be expanded by dragging down with two fingers.

     Notifications I may be an iOS fangirl who is so attached to her iPhone that she sleeps with it right next to her head, but even I have to admit that Google's definitely doing something right with notifications.
In Jelly Bean, the notification bar can do more than ever. It can now expand, to show you a portion of your inbox, rather than just the number of emails waiting for you. (Yes, this is similar to one of the display options for email notifications in iOS, but those can't be compacted with a touch.)
Google Now cards also appear in the notifications tray, meaning that you can view relevant information just by opening the notifications rather than having to switch apps.
The changes to notifications are small touches, but based on some time with a Galaxy Nexus running Jelly Bean, it's easy to see that the time and frustrations they'll save you will quickly add up.

·                                 Google has also revamped the Search experience in the new update and introduced Knowledge graph inside the search. The Voice Search feature is now supported by a nice and sweet guided female voice like Siri or S-Voice but it is much more realistic and nice.

·                                 Google Now is a new feature from the search engine giant which uses all of your Google search history, location and calendar to automatically give relevant information. For example, if your favorite team is playing a match, Google Now will notify you with the latest on them because it will know what your favorite team is from your search history.

·                                 Also Google Now will let you know if you flight is delayed, how far is the airport, it’ll remind you when to leave and how long would it take you to reach your destination. All in all a service to keep you on your toes with the clock.

      Check out the updated OS on Nexus S

·                                

Comments

Popular posts from this blog

Short explanation on Gradle, minSdkVersion, maxSdkVersion, compileSdkVersion and targetSdkVersion in Android

Gradle : The Android build system compiles app resources and source code, and packages them into APKs that you can test, deploy, sign, and distribute. Android Studio uses Gradle . The Android plugin for Gradle works with the build toolkit to provide processes and configurable settings that are specific to building and testing Android applications. Gradle and the Android plugin run independent of Android Studio. Gradle architecture is shown below. Example: android { compileSdkVersion 27 buildToolsVersion “26.0.2” defaultConfig { applicationId “com.example.checkyourtargetsdk" minSdkVersion 15 targetSdkVersion 27 versionCode 1 versionName “1.0” } } minSdkVersion : minSdkVersion is the lower bound for your app . The minSdkVersion is one of the signals the Google Play Store uses to determine which of a user’s devices an app can be installed on.  your app’s minSdkVersion must be at least as high as your dependencies’ minSdkVe

Google re-branded the support Android libraries to AndroidX

It is important to note, you cannot mix AppCompat and Jetpack in the same project. You must convert everything to use Jetpack if you want to upgrade. The support library artifacts are being deprecated and all future development is going into AndroidX , so there's no avoiding this migration. Alan Viverette sums this up nicely: “There won’t be a 29.0.0, so Android Q APIs will only be in AndroidX” The stable release of 28.0.0 will be the final feature release packaged as android.support . All subsequent feature releases will only be made available as androidx-packaged artifacts. Below tips will give you a clearer transition path. The current version of AppCompat (v28.x) is exactly the same as AndroidX (v1.x). In fact, the AppCompat libraries are machine generated by changing maven coordinates and package names of the AndroidX codebase. For example, android.support.v7.app.AppCompatActivity is now androidx.appcompat.app.AppCompatActivity For a complete listi

Android Beginners Guide

                                                                                                               Android Operation System: Android is an operating system based on Linux with a Java programming interface. It provides tools, e.g. a compiler, debugger and a device emulator as well as its own Java Virtual machine (Dalvik Virtual Machine - DVM). Android is created by the Open Handset Alliance which is lead by Google. Android uses a special virtual machine, e.g. the Dalvik Virtual Machine. Dalvik uses special bytecode. Therefore you cannot run standard Java bytecode on Android. Android provides a tool "dx" which allows to convert Java Class files into "dex" (Dalvik Executable) files. Android applications are packed into an .apk (Android Package) file by the program "aapt" (Android Asset Packaging Tool) To simplify development Google provides the Android Development Tools (ADT) for Eclipse. The ADT performs automatically the conversion f