将 AndroidTV 应用程序迁移到 phone
Migrate an AndroidTV application to a phone
是否有将 androidTV 应用程序迁移到 phone 的任何过程、解决方法、教程或任何内容?
感谢您的宝贵时间。
遗憾的是,我只看到有关将移动应用程序安装到 AndroidTV 的示例和教程。您可以在这个线程中查看它:Installing android mobile apps on android TV
Perhaps the single most important thing in your manifest would be
<manifest>
<uses-feature android:name="android.hardware.touchscreen"
android:required="false" />
...
</manifest>
to allow the APK to be installed on TV.
Then you can deal with other subject mentioned in the comments as LEANBACK_LAUNCHER
.
您需要为电视和 phone 设备编写单独的移动应用程序。
是否有将 androidTV 应用程序迁移到 phone 的任何过程、解决方法、教程或任何内容?
感谢您的宝贵时间。
遗憾的是,我只看到有关将移动应用程序安装到 AndroidTV 的示例和教程。您可以在这个线程中查看它:Installing android mobile apps on android TV
Perhaps the single most important thing in your manifest would be
<manifest> <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> ... </manifest>
to allow the APK to be installed on TV.
Then you can deal with other subject mentioned in the comments as
LEANBACK_LAUNCHER
.
您需要为电视和 phone 设备编写单独的移动应用程序。