3
在Java中有沒有一種標準的方法來找出我的應用程序將運行在哪些Android設備(如平板電腦或手機)上?如何找出哪些Android設備將運行我的應用程序?
在Java中有沒有一種標準的方法來找出我的應用程序將運行在哪些Android設備(如平板電腦或手機)上?如何找出哪些Android設備將運行我的應用程序?
這裏是代碼:
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);
}
,或者你可以在AndroidManifest.xml設置suppurted屏幕:
<manifest ... >
<supports-screens android:xlargeScreens="true" />
...
</manifest>
訪問的谷歌IO 2011官方源代碼here如果你想更多細節。
我希望它有幫助!
還有android.os.Build類。在製造商和型號等方面有許多靜態常量。