1

我想停止我的 android 应用程序在平板电脑上运行。我在 AndroidManifest.xml 中给出了如下所示

<supports-screens 
android:smallScreens="true" 
android:normalScreens="true" 
android:xlargeScreens="false" 
android:resizeable="false" 
android:largeScreens="false"/>

应用程序仍在平板电脑上安装和运行。如何防止这种情况?

4

2 回答 2

1

在您的 AndroidManifest.xml 中添加 < compatible-screens > ...

看到这个链接...

http://developer.android.com/guide/google/play/filters.html#advanced-filters

http://developer.android.com/guide/topics/manifest/compatible-screens-element.html

于 2012-09-12T06:23:22.227 回答
0

看看这个问题。我认为它回答了你的场景。

于 2012-09-12T06:06:06.690 回答