2

我正在尝试在我的代码中检测 7" 平板电脑(即 Kindle Fire 和 Nook Color)。但是,仅测试最小尺寸 1024x600 并不好,因为这样 Galaxy Nexus 也会通过此测试。任何人都有检测此问题的经验什么样的信息?

谢谢,伊戈尔

编辑: 我找到了一种使用以下代码检测 Kindle Fire & Nook Color 设备的方法:

Activity activity = (Activity) activityContext;
activity.getWindowManager().getDefaultDisplay().getMetrics(metrics);
int width = activity.getWindowManager().getDefaultDisplay().getWidth();
int height = activity.getWindowManager().getDefaultDisplay().getHeight();
if ((width == 1024 && height == 600) || (width == 600 && height == 1024)) {    
        //Detects 7" tablets: i.e. Kindle Fire & Nook Color
        isTablet = true;
    }
4

4 回答 4

5

要计算设备的高度和宽度(以英寸为单位),您可以使用以下代码。

DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);

float widthInInches = metrics.widthPixels / metrics.xdpi;
float heightInInches = metrics.heightPixels / metrics.ydpi;

然后可以计算大小

double sizeInInches = Math.sqrt(Math.pow(widthInInches, 2) + Math.pow(heightInInches, 2));
//0.5" buffer for 7" devices
boolean is7inchTablet = sizeInInches >= 6.5 && sizeInInches <= 7.5; 

根据上面的 Commonsware 建议,一个可能更快但不太明显的实现。

double sizeInInchesSquared = (widthInInches * widthInInches) + (heightInInches * heightInInches);
//0.5" buffer for 7" devices (6.5^2 = 42.25) (7.5^2 = 56.25)
boolean is7inchTablet = sizeInInchesSquared >= 42.25 && sizeInInchesSquared <= 56.25; 
于 2012-05-23T16:52:12.467 回答
1

请参阅以下内容。似乎不适用于所有设备。如果这两款平板电脑是您唯一担心的设备,我会尝试任何一种实现。

https://stackoverflow.com/a/10080537/300972

https://groups.google.com/group/android-developers/browse_thread/thread/cae5ff90157098b1?pli=1

于 2012-05-23T16:50:18.487 回答
1

如果你关心的是平板电脑而不是尺寸,具体来说:有Build类,它可以告诉你模型和产品等信息。

于 2012-05-23T16:49:24.883 回答
1

我知道这是旧线程,但是这种方式呢:

public boolean isLargeScreen() {

    LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View view = inflater.inflate(R.layout.device_screen, null);
    FrameLayout menu = (FrameLayout) view.findViewById(R.id.menu);


    if (left_menu != null) {
        return true;
    } else {
        return false;
    }
}

然后:

if ( isLargeScreen() ) {
    // do something for large screen & extra large screen
} else {
    // do something for normal screen size
}

和 xml 布局(例如):

res/layout/device_screen.xml // 正常屏幕尺寸的布局(“默认”)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

    [leave it blank]

</LinearLayout>

res/layout-large/device_screen.xml // 大屏幕尺寸 tablet 7' 的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

    <FrameLayout
        android:id="@+id/menu"
        ... />

</LinearLayout>

res/layout-xlarge/device_screen.xml // 超大屏幕尺寸 > 平板电脑 10' 的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

    <FrameLayout
        android:id="@+id/menu"
        ... />

</LinearLayout>

在 HTC Desire 和三星 Galaxy Note 10.1 上测试 - 效果很好!

于 2013-02-12T23:14:06.560 回答