使用类别 "Home" 和 "Default" 来创建自定义主屏幕替换 Android 电视(不一样 Android Phone )?
Use category "Home" and "Default" for create a custom home-screen replacement Android TV (not work same Android Phone )?
我的目的是将 home_screen 替换为 Android 电视。
我使用本教程:
http://code.tutsplus.com/tutorials/build-a-custom-launcher-on-android--cms-21358
AndroidManifest.xml 中的两行代码将替换 Android 中的 home_screen Phone:
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
但它在 Android TV 中不起作用,当单击主页按钮时没有替换 home_screen,它在主屏幕中显示为正常应用程序。
而且我仍然没有找到任何关于 set home_screen android TV 的文件。
谁能知道我的问题的解决方案?
谢谢。
据我从这个discussion about Android TV home screen中的一个帖子中了解到,这根本不可能。
我的目的是将 home_screen 替换为 Android 电视。 我使用本教程: http://code.tutsplus.com/tutorials/build-a-custom-launcher-on-android--cms-21358
AndroidManifest.xml 中的两行代码将替换 Android 中的 home_screen Phone:
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
但它在 Android TV 中不起作用,当单击主页按钮时没有替换 home_screen,它在主屏幕中显示为正常应用程序。
而且我仍然没有找到任何关于 set home_screen android TV 的文件。
谁能知道我的问题的解决方案?
谢谢。
据我从这个discussion about Android TV home screen中的一个帖子中了解到,这根本不可能。