如何在 Android 中排除 GPU 较低的设备?

发布于 2024-12-05 13:13:53 字数 794 浏览 1 评论 0原文

可能的重复:
如何排除所有设备Android Manifest 中哪些 GPU 较低?

昨天,我为 Android 创建了一个动态壁纸,并在我的 Droid X、Galaxy S 和 Fascinate 中进行了尝试。我注意到它在 Galaxy S 和 Fasciante 中运行顺利,但在 GPU 较低的 Droid X 中则不然。到目前为止,我只能使用下面的代码消除具有正常超大屏幕的特定设备。但它并没有具体说明它的 GPU 是否较低。我的问题是,是否有办法排除其他 GPU 较低的设备?

<manifest ... >     
<supports-screens android:smallScreens="false"                       android:normalScreens="false"                       android:largeScreens="false"                       android:xlargeScreens="true"                       
android:requiresSmallestWidthDp="600" />     
   </manifest> 

Possible Duplicate:
How to exlude all the devices which have low GPU in Android Manifest?

Yesterday, I created a live wallpaper for Android and tried it in my Droid X, Galaxy S, and Fascinate. And I noticed that it runs smootly in Galaxy S and Fasciante but not in Droid X which has lower GPU. So far I can only eliminate a specific devices which has normal-xlarge screen using the code below. But it does not specifically tell whether it has lower GPU. My question is, is there anyway to exlude other devices with lower GPU?

<manifest ... >     
<supports-screens android:smallScreens="false"                       android:normalScreens="false"                       android:largeScreens="false"                       android:xlargeScreens="true"                       
android:requiresSmallestWidthDp="600" />     
   </manifest> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜声 2024-12-12 13:13:53

我认为您不能按标准 CPU 排除,但您可以按标准 API 级别排除

<uses-sdk android:minSdkVersion="integer"  />

我知道这不是很好的解决方案,但您可以假设如果处于较高的 sdk 级别,则该程序安装在较新的设备上(其中通常意味着更快)。
我告诉过您这并不能完全解决您的问题,但您可能会发现它很有用。

I think you can not exclude by criteria CPU but you can exclude with criteria API level

<uses-sdk android:minSdkVersion="integer"  />

I know this is not well solution but you can go with assumption that if the is on higher sdk level that the program is installed on device that is newer (which usually means faster).
I told you this is not complete solution to your problem but you might find it useful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文