Existe-t-il un moyen standard en Java de savoir sur quels appareils Android (tablette ou téléphone) mon application fonctionnera ?
Réponses
Trop de publicités?Voici le code :
public static boolean isHoneycomb() {
// Can use static final constants like HONEYCOMB, declared in later versions
// of the OS since they are inlined at compile time. This is guaranteed behavior.
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB;
}
public static boolean isTablet(Context context) {
return (context.getResources().getConfiguration().screenLayout
& Configuration.SCREENLAYOUT_SIZE_MASK)
>= Configuration.SCREENLAYOUT_SIZE_LARGE;
}
public static boolean isHoneycombTablet(Context context) {
return isHoneycomb() && isTablet(context);
}
ou vous pouvez définir les écrans supprimés dans le fichier AndroidManifest.xml :
<manifest ... >
<supports-screens android:xlargeScreens="true" />
...
</manifest>
Consultez le code source officiel de la Google IO 2011 aquí si vous voulez plus de détails.
J'espère que ça aidera !
slkorolev
Points
4077