Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/194.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用Rhomobile限制Android手机应用程序_Android_Rhomobile - Fatal编程技术网

如何使用Rhomobile限制Android手机应用程序

如何使用Rhomobile限制Android手机应用程序,android,rhomobile,Android,Rhomobile,我希望我在谷歌市场上的安卓应用程序只针对安卓手机上市,而不针对平板电脑。我使用rhomobile开发应用程序。请帮助我您必须在AndroidManifest.xml中使用此设置: <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="false" android:xlargeScreens="false"/> 您也可以使用此选项进行更好的筛

我希望我在谷歌市场上的安卓应用程序只针对安卓手机上市,而不针对平板电脑。我使用rhomobile开发应用程序。请帮助我

您必须在AndroidManifest.xml中使用此设置:

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

您也可以使用此选项进行更好的筛选:

<compatible-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" />

    <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" />
</compatible-screens>

您必须在AndroidManifest.xml中使用此设置:

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

您也可以使用此选项进行更好的筛选:

<compatible-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" />

    <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" />
</compatible-screens>


我不使用本机。我使用的是rhomobile跨平台工具,该工具具有生成此信息的设置。检查您的rhomobile需要设置什么以及在哪里生成。像这样,我不使用本机。我使用的是rhomobile跨平台工具,它有一个将生成此信息的设置。检查您的rhomobile需要设置什么以及在哪里生成。这样地