让Android应用程式显示为平板电脑的设计

我在PlayStore上有一个cordova应用程序,但在优化提示中,它显示该应用程序不是为平板电脑设计的.我已经环顾四周,并更改了<支持屏幕>标签,但它仍然不工作,我仍然得到优化提示.

这是清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="11"    
                    android:versionName="$BundLeversion$" 
                    package="$AppIdentifier$" 
                    android:windowSoftInputMode="adjustPan"
                    android:hardwareAccelerated="$AndroidHardwareacceleration$"
                    xmlns:android="http://schemas.android.com/apk/res/android" >
        <supports-screens
                android:largeScreens="true"
                android:normalScreens="true"
                android:smallScreens="true"
                android:xlargeScreens="true"
                android:resizeable="true"
                android:anyDensity="true"
                />

        <application android:label="@string/app_name" 
                                 android:icon="@drawable/icon" 
                                 android:hardwareAccelerated="$AndroidHardwareacceleration$">
                <activity android:label="@string/app_name" 
                    android:name=".TelerikCallbackActivity"
                    android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
                    android:launchMode="standard"
                                    android:theme="@android:style/Theme.Black.NoTitleBar" >
                        <intent-filter>
                                <action android:name="android.intent.action.MAIN" />
                                <category android:name="android.intent.category.LAUNCHER" />
                        </intent-filter>
                </activity>
        </application>
        <uses-sdk android:targetSdkVersion="14" />
</manifest>

这里是配置文件

<cordova>

    <content src="index.html" />

    <preference name="usebrowserHistory" value="true" />
    <preference name="exit-on-suspend" value="false" />
    <preference name="fullscreen" value="true" />
    <preference name="permissions" value="none"/>

    <plugins>
        <plugin name="App" value="org.apache.cordova.App"/>
        <plugin name="Device" value="org.apache.cordova.Device"/>
    </plugins>
</cordova>

我需要做些什么才能使应用程序可用于平板电脑?

解决方法

你需要的不是“基于代码的答案”.

Google Play会检查您上传的信息,以判断应用程序是否也适用于平板电脑.

这应该包括以下内容.

(1)应用程序与平板电脑启动屏幕

(2)应用程序与平板电脑图标

(3)平板电脑屏幕配置. (你已经根据你的问题设置了)

(4)平板电脑的信息. (截图,宣传图像等)

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...