gpt4 book ai didi

android - 如何知道 : it's phone or tablet?

转载 作者:行者123 更新时间:2023-11-30 04:19:33 29 4
gpt4 key购买 nike

我创建的应用程序在平板电脑和手机上运行良好。对于检测(界面设置),我使用了宽度和高度。if width > 1280 - 它必须是平板电脑..但是..我的 friend 在 samsung galaxy note 上测试了这个应用程序..这是一个小手机(不是平板电脑)但那里的屏幕分辨率 = 1280x800。现在我在那里显示有问题.. 任何人都可以告诉我 - 有没有办法检测:平板电脑或手机??

有知道的请告诉我一下

问候彼得。

p.s 抱歉我的英语不好..我正在努力变得更好。

最佳答案

您可以尝试在 Chrome to Phone 扩展示例中找到的这段代码:

static boolean isTablet (Context context) {
// TODO: This hacky stuff goes away when we allow users to target devices
int xlargeBit = 4; // Configuration.SCREENLAYOUT_SIZE_XLARGE; // upgrade to HC SDK to get this
Configuration config = context.getResources().getConfiguration();
return (config.screenLayout & xlargeBit) == xlargeBit;
}

关于android - 如何知道 : it's phone or tablet?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9478793/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com