当我在电视上使用文件浏览器安装我的应用程序时,我可以运行它,但我不知道如何创建一个将位于电视主屏幕上的图标
这是我的AndroidManifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sony.omgandroid" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity
android:name=".FullscreenActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:theme="@style/FullscreenTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:0)
它利用android:banner
标记AndroidManifest
中的application
。
<application
android:name=".ExampleApp"
android:banner="@drawable/app_banner"
android:theme="@style/AppTheme"
答案 1 :(得分:0)
您需要在 AndroidManifest.xml
文件中添加
android:banner
android:icon
android:logo
和 android.intent.category.LEANBACK_LAUNCHER
示例:
<activity
...
android:banner="@mipmap/ic_launcher"
android:icon="@mipmap/ic_launcher"
android:logo="@mipmap/ic_launcher">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>