Tizen应用程序上的多任务处理和应用程序可见性不起作用



我一直在尝试让应用程序遵守三星电视上的"自动运行最后一个应用程序"设置,但这不起作用。我已经尝试了StackOverflow和三星开发者论坛上的所有内容,但它不起的作用

这是我的config.xml

<widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" viewmodes="fullscreen" id="https://company.website" version="1.2.4">
<access origin="*" subdomains="true"/>
<tizen:metadata key="http://samsung.com/tv/metadata/multitasking.support" value="true"/>
<tizen:app-control>
<tizen:src name="index.html" reload="disable"/>
<tizen:operation name="http://samsung.com/appcontrol/operation/eden_resume"/>
</tizen:app-control>
<tizen:application required_version="2.3" package="12341234" id="12341234.companyAppName"/>
<author href="https://company.website" email="contact@company.website">CompanyAppName</author>
<content src="index.html"/>
<feature name="http://tizen.org/feature/screen.size.normal.1080.1920"/>
<icon src="400x400.png"/>
<tizen:privilege name="http://developer.samsung.com/privilege/network.public"/>
<tizen:privilege name="http://tizen.org/privilege/appmanager.launch"/>
<tizen:privilege name="http://tizen.org/privilege/display"/>
<tizen:privilege name="http://tizen.org/privilege/application.info"/>
<tizen:privilege name="http://tizen.org/privilege/internet"/>
<tizen:privilege name="http://tizen.org/privilege/tv.inputdevice"/>
<tizen:privilege name="http://tizen.org/privilege/application.launch"/>
<tizen:profile name="tv-samsung"/>
<tizen:setting background-support="enable"/>
<tizen:setting screen-orientation="landscape"/>
<tizen:setting context-menu="enable"/>
<tizen:setting encryption="disable"/>
<tizen:setting install-location="auto"/>
<tizen:setting hwkey-event="enable"/>
<tizen:background-category value="media"/>
<tizen:video_splash_screen ready_when="video-finished">
<tizen:vss_default background_color="#ffffff" image_border="0px stretch" video="intro.mp4" image="400x400.png" background_image="400x400.png"/>
</tizen:video_splash_screen>
<description/>
<name>CompanyAppName</name>

有人遇到过同样的问题吗?我一直在努力让它发挥作用。在4台不同的电视上测试了这一功能,但都不起作用,而像Netflix或AppleTV这样的应用程序具有完美的功能。

此演示程序可以在新的三星电视上运行良好,即使它自2016年以来一直在提交。

请查看:

https://github.com/SamsungDForum/PlayerAVPlayMultitasking

自动运行最后一个应用程序与多任务处理相同。

对于自动运行最后一个应用程序支持,有3个条件

  1. 应用程序必须支持多任务处理->您的配置支持它
  2. 启用菜单选项(自动运行上一个应用程序(
  3. 产品支持多任务处理。有些型号不支持。请离开您的电视型号。如果支持多任务处理,您的应用程序将支持自动运行上一个应用程序

Netflix,苹果不是网络应用程序。

相关内容

  • 没有找到相关文章

最新更新