为什么我的应用程序没有出现在平板电脑的“Google Play Market”中?

时间:2013-06-04 09:54:03

标签: android tablet

我刚刚在“Google Play”上发布了我的应用程序,但我注意到有问题的应用程序似乎是从智能手机浏览“Google Play”,但未出现在我的平板电脑Samsung Galaxy Tab2 10.1的“Google Play”上。怎么会出现这个问题?

这是我的清单:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    android:versionCode="32" android:versionName="4.7" 
    package="it.app.my">

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

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

<uses-feature android:name="android.hardware.vibrate" android:required="false"/>
<uses-feature android:name="android.hardware.wifi" android:required="false"/>

<compatible-screens>
    <!-- all small size screens -->
    <screen android:screenSize="small" android:screenDensity="ldpi" />
    <screen android:screenSize="small" android:screenDensity="mdpi" />
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />
    <!-- all normal size screens -->
    <screen android:screenSize="normal" android:screenDensity="ldpi" />
    <screen android:screenSize="normal" android:screenDensity="mdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
    <!-- all small size screens -->
    <screen android:screenSize="large" android:screenDensity="ldpi" />
    <screen android:screenSize="large" android:screenDensity="mdpi" />
    <screen android:screenSize="large" android:screenDensity="hdpi" />
    <screen android:screenSize="large" android:screenDensity="xhdpi" />
    <!-- all normal size screens -->
    <screen android:screenSize="xlarge" android:screenDensity="ldpi" />
    <screen android:screenSize="xlarge" android:screenDensity="mdpi" />
    <screen android:screenSize="xlarge" android:screenDensity="hdpi" />
    <screen android:screenSize="xlarge" android:screenDensity="xhdpi" />
</compatible-screens>


<application android:debuggable="true" 
    android:icon="@drawable/icon" 
    android:label="@string/app_name">
        <activity android:label="@string/app_name" 
            android:name=".MainActivity" 
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen">


    <intent-filter>
        <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.LAUNCHER"/>
    </intent-filter>
</activity>

</application>

</manifest>

2 个答案:

答案 0 :(得分:1)

在清单文件中添加:

在移动设备中运行您的应用程序以及Teblet(因此,以下代码将为您工作)。

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

Declaring an App is Only for Tablets

extra information for screen size


而不是上面你也可以在下面做:

示例1

清单声明<uses-sdk android:minSdkVersion="3">并且不包含<supports-screens>元素。

结果:Google Play不会向小屏幕设备的用户展示该应用,但会将其展示给普通和大屏设备的用户,除非适用其他过滤器。

示例2

清单声明<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4">并且不包含<supports-screens>元素。

结果:Google Play会向所有设备上的用户显示该应用,除非适用其他过滤器。

示例3

清单声明<uses-sdk android:minSdkVersion="4">并且不包含<supports-screens>元素。

结果:Google Play会向所有用户展示该应用,除非适用其他过滤器。

答案 1 :(得分:0)

像这样添加targetSdkVersion声明

<uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="17" />