Alors que la conférence Google I/O n’est pas terminée, Google vient de mettre à jour le site dédié au développement sur Android.
Nouveau SDK Android 2.2 (kit de développement), avec de nombreuses nouveautés du framework API. Dont par exemple les API OpenGL ES 2.0, un système d sauvegarde des données des applications,
La liste des nouveautés est à la suite de l’article.
Mais aussi le NDK r4 simplifié, un système de débogage… Voir le site officiel.
Data backup
The platform now provides a generalized backup service that applications can use to backup and restore user data, to ensure that users can maintain their data when switching devices or reinstalling the application. The Backup Manager handles the work of transporting the application data to and from the backup storage area in the cloud. The Backup Manager can store any type of data, from arbitrary data to files, and manages backup and restore operations in an atomic manner. For more information, see Data Backup.
Graphics
- New OpenGL ES 2.0 APIs in
android.opengl.GLES20
. - New
ETC1
,ETC1Util
, andETC1Util.ETC1Texture
classes and utility methods for using ETC1 for texture compression. - New
ImageFormat
class. - New
YUV image format API
to enable compression from YUV to JPEG and manipulation of YUV data.
Media
- New APIs in
android.media.AudioManager
for managing audio focus, transport control, transient loss of audio focus, ducking. - New broadcast intent for routing audio to SCO —
ACTION_SCO_AUDIO_STATE_CHANGED
with extras indicating new state. - New APIs in
SoundPool
to detect completion of sound-loading. - New APIs in
SoundPool
for auto pause and resume. - New APIs in
MediaRecorder
for specifying audio settings for number of channels, encoding and sampling rates, sampling rate. - New APIs for adding files to the media database, so that they are automatically scanned. See
MediaScannerConnection.scanFile
andMediaScannerConnection.OnScanCompletedListener
.
Speech recognition and third-party recognition engines
- The platform provides new speech-recognition APIs that allow applications to have a richer interaction with the available voice recognizer. For example, the APIs are sufficient to integrate voice recognition deeply into an IME.
- The platform also provides a
RecognitionService
base class that lets third-party developers create plug-in recognition engines. - New
RecognitionListener
interface to receive callbacks. - New
RecognizerIntent
extras that let a requester app specify details as preferred language, minimum length in milliseconds, and so on.
Camera and camcorder
- Changes to camera preview API to improve efficieny of preview pipeline.
- New display orientation for camera (it can now work in portrait orientation).
- New APIs in
android.hardware.Camera
for managing zoom level. - New APIs
android.hardware.Camera.Parameters
for querying and setting device camera settings such as focal length, exposure, zoom level, view angle, and others. - New
thumbnail
utility for video and image thumbnails. - New
CamcorderProfile
andCamcorderProfile
classes enable apps to determine device hardware camera capablities. - New support in
android.media.ExifInterface
for retrieving GPS and focal length.
Device policy manager
New device policy management APIs allow developers to write « device administrator » applications that can control security features of the device, such as the minimum password strength, data wipe, and so on. Users can select the administrators that are enabled on their devices. For more information, see the android.app.admin
classees or the example application code in DeviceAdminSample.java.
UI Framework
- New UI modes « car mode » and « night mode » and
UiModeManager
let applications adjust their application UI for specific user modes. - New
ScaleGestureDetector
that lets Views detect and handle transformation gestures that involve more than one pointer (multitouch) using the supplied MotionEvents. - Improvements in the way that multitouch events are reported in
MotionEvent
objects. - The layout attribute
fill_parent
is renamed tomatch_parent
. This affects both XML and Java code (seeViewGroup.LayoutParams
). Note that the platform will continue to honor uses offill_parent
in legacy applications. - New layout attributes
tabStripEnabled
,tabStripRight
, andtabStripLeft
let developers customize the bottom strip of TabWidgets. - Better support for managed dialogs in Activity.
Accounts and sync
- New method
AddPeriodicSync()
lets you schedule a periodic sync with a specific account, authority, and extras at the given frequency.
New manifest elements and attributes
- For specifying the application’s preferred install location (see App Installation on External Storage Media, above):
- New
android:installLocation
attribute of the
element. Specifies the default install location defined by an application.
- New
- New
android:installLocation
attribute of the
element. Specifies the default install location defined by an application. - For managing user data backup (see Backup manager, above, for more information):
- New
android:backupAgent
attribute of the
element. Specifies the component name of the BackupAgent subclass provided by the application to handle backup/restore operations, if any. - New
android:restoreAnyVersion
attribute of the
element. Boolean value that indicates whether the application is prepared to attempt a restore of any backed-up dataset, even if the backup is apparently from a newer version of the application than is currently installed on the device.
- New
- New
android:backupAgent
attribute of the
element. Specifies the component name of the BackupAgent subclass provided by the application to handle backup/restore operations, if any. - New
android:restoreAnyVersion
attribute of the
element. Boolean value that indicates whether the application is prepared to attempt a restore of any backed-up dataset, even if the backup is apparently from a newer version of the application than is currently installed on the device. - For managing the platform’s JIT compiler:
- New
android:vmSafeMode
attribute of the
element. Boolean value that specifies whether to disable JIT compiler optimizations when running the application.
- New
- New
android:vmSafeMode
attribute of the
element. Boolean value that specifies whether to disable JIT compiler optimizations when running the application.
Permissions
-
android.permission.BIND_DEVICE_ADMIN
— Any device administration broadcast receiver must require this permission, to ensure that only the system can interact with it. -
android.permission.KILL_BACKGROUND_PROCESSES
— Allows an application to callkillBackgroundProcesses(String)
. -
android.permission.BIND_WALLPAPER
— AnyWallpaperService
must require this permission, to ensure that only the system can interact with it. -
android.permission.SET_TIME
— Allows an application to set the system time.
API differences report
For a detailed view of all API changes in Android 2.2 (API Level 8), see the API Differences Report.
NDK :
- General notes:
-
- Provides a simplified build system through the new
ndk-build
build command. - Adds support for easy native debugging of generated machine code on production devices through the new
ndk-gdb
command. - Adds a new Android-specific ABI for ARM-based CPU architectures,
armeabi-v7a
. The new ABI extends the existingarmeabi
ABI to include these CPU instruction set extensions:- Thumb-2 instructions
- VFP hardware FPU instructions (VFPv3-D16)
- Optional support for ARM Advanced SIMD (NEON) GCC intrinsics and VFPv3-D32. Supported by devices such as Verizon Droid by Motorola, Google Nexus One, and others.
- Adds a new
cpufeatures
static library (with sources) that lets your app detect the host device’s CPU features at runtime. Specifically, applications can check for ARMv7-A support, as well as VFPv3-D32 and NEON support, then provide separate code paths as needed. - Adds a sample application,
hello-neon
, that illustrates how to use thecpufeatures
library to check CPU features and then provide an optimized code path using NEON instrinsics, if supported by the CPU. - Lets you generate machine code for either or both of the instruction sets supported by the NDK. For example, you can build for both ARMv5 and ARMv7-A architectures at the same time and have everything stored to your application’s final
.apk
. - To ensure that your applications are available to users only if their devices are capable of running them, Android Market now filters applications based on the instruction set information included in your application — no action is needed on your part to enable the filtering. Additionally, the Android system itself also checks your application at install time and allows the installation to continue only if the application provides a library that is compiled for the device’s CPU architecture.
- Adds support for Android 2.2, including a new stable API for accessing the pixel buffers of
Bitmap
objects from native code.
- Provides a simplified build system through the new
Rendez-vous un mercredi sur deux sur Twitch, de 17h à 19h, pour suivre en direct l’émission SURVOLTÉS produite par Frandroid. Voiture électrique, vélo électrique, avis d’expert, jeux ou bien témoignages, il y en a pour tous les goûts !
qui aurait facebook ou msn pour me montrez coment metre la mise a jour svp merci
[...] Nouveau : SDK Android 2.2, API 8, NDK r4… [...]
[...] Nouveau : SDK Android 2.2, API 8, NDK r4… [...]
Pourtant je te jure qu'elle y est
[...] Commentaires récents jean-luc/cajl dans Flash 10.1 déjà disponible en beta pour Android …g0r007 dans Android 2.2 « Froyo » enfin officiel : Flash 10.1, WiFi hotspots et des performances amélioréestaire dans HTC s’excuse pour le retard de mise à jour du HTC HeroMinishlink dans Flash 10.1 déjà disponible en beta pour Android …psik0tik dans Nouveau : SDK Android 2.2, API 8, NDK r4… [...]
SDK installé, plugin Eclipse mis à jour. doit recevoir demain le livre sur android présenté y'a quelques jours. timing nickel :D la présentation de google était sympa!
Elle est sur frandroid.com mais pas sur dev.frandroid.com (ou bien je suis bigleux, mais ça m'étonnerait: la dernière news sur dev.frandroid.com c'est sur l'intégration de Paypal)
Commence pas par lire les nouveautés d'un SDK alors ^^ Par contre un bon livre sur Android et c'est parti ! Bonne chance sur la voie du dev' si tu t'y mets ! :)
[...] Nouveau : SDK Android 2.2, API 8, NDK r4… [...]
Les applis sur stockage externe dans froyo, c'est officiel ! : http://developer.android.com/sdk/android-2.2.html#install-loc
OpenGL 2.0 enfin j espère que les graphismes seront mieux avec ça . :D
bah j essaye de m y interesser mon grand, y a un debut a tout =)
Elle y est ;)
*Si tu comprends pas, ...
Si tu comprends, ça veut dire que ça t'intéressera pas :) Cette news devrait être sur http://dev.frandroid.com/ d'ailleurs :o
une bonne âme pour traduire? =D je comprend rien =D
Ce contenu est bloqué car vous n'avez pas accepté les cookies et autres traceurs. Ce contenu est fourni par Disqus.
Pour pouvoir le visualiser, vous devez accepter l'usage étant opéré par Disqus avec vos données qui pourront être utilisées pour les finalités suivantes : vous permettre de visualiser et de partager des contenus avec des médias sociaux, favoriser le développement et l'amélioration des produits d'Humanoid et de ses partenaires, vous afficher des publicités personnalisées par rapport à votre profil et activité, vous définir un profil publicitaire personnalisé, mesurer la performance des publicités et du contenu de ce site et mesurer l'audience de ce site (en savoir plus)
En cliquant sur « J’accepte tout », vous consentez aux finalités susmentionnées pour l’ensemble des cookies et autres traceurs déposés par Humanoid et ses partenaires.
Vous gardez la possibilité de retirer votre consentement à tout moment. Pour plus d’informations, nous vous invitons à prendre connaissance de notre Politique cookies.
Gérer mes choix