Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/mongodb/11.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
Java 我的应用在要启动的手机版本中没有图标_Java_Android - Fatal编程技术网

Java 我的应用在要启动的手机版本中没有图标

Java 我的应用在要启动的手机版本中没有图标,java,android,Java,Android,我的应用程序是智能手机版本,我希望它能与AndroidTV兼容,我可以得到它,但现在在手机版本中,图标似乎无法打开应用程序,但该应用程序在手机和AndroidTV上都能工作 我遵循这些步骤使其与AndroidTV兼容 我不知道我是否必须为phone和AndroidTV制作不同的版本,或者相同的软件包应该适用于所有设备 我只需要图标出现在手机版本要启动 在手机上安装图标有什么帮助或解决方案吗 谢谢 我的舱单: <!-- TV app need to declare touchscreen

我的应用程序是智能手机版本,我希望它能与AndroidTV兼容,我可以得到它,但现在在手机版本中,图标似乎无法打开应用程序,但该应用程序在手机和AndroidTV上都能工作

我遵循这些步骤使其与AndroidTV兼容

我不知道我是否必须为phone和AndroidTV制作不同的版本,或者相同的软件包应该适用于所有设备

我只需要图标出现在手机版本要启动

在手机上安装图标有什么帮助或解决方案吗

谢谢

我的舱单:

<!-- TV app need to declare touchscreen not required -->
<uses-feature
    android:name="android.hardware.touchscreen"
    android:required="false" />

<uses-feature
    android:name="android.software.leanback"
    android:required="false" />

<application
    android:name="com.myapp"
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:networkSecurityConfig="@xml/network_security_config"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    android:banner="@drawable/banner">



    <activity android:name="com.myapp.MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
        </intent-filter>
    </activity>