智能电视应用程序(三星,LG .)中的是否可以在应用程序背景中显示电视输入流/广播?意思:要用应用程序用户界面覆盖正在监视的频道/内容?
在三星2011智能电视仿真器中,我看到如果我将应用程序的背景设置为transperent:
body
{
width: 960px;
height: 540px;
background-color:transparent;
}
我可以看到电视输入流(改变风景图片),但没有在2012/13模拟器。
在真正的电视上(以及2012/13年度的仿真器上)有可能产生同样的影响吗?
发布于 2014-02-18 23:34:41
您需要创建一个Ticker应用程序。对于这种类型的应用程序,将config.xml文件中的ticker标记的值设置为'y',下面是一个示例:
<?xml version="1.0" encoding="UTF-8"?>
<widget>
<cpname itemtype="string"></cpname>
<cplogo itemtype="string"></cplogo>
<cpauthjs itemtype="string"></cpauthjs>
<ThumbIcon itemtype="string">icon/icono106.png</ThumbIcon>
<BigThumbIcon itemtype="string">icon/icono115.png</BigThumbIcon>
<ListIcon itemtype="string">icon/icono85.png</ListIcon>
<BigListIcon itemtype="string">icon/icono95.png</BigListIcon>
<category itemtype="string"></category>
<autoUpdate itemtype="boolean">n</autoUpdate>
<ver itemtype="string">0.100</ver>
<mgrver itemtype="string"></mgrver>
<fullwidget itemtype="boolean">n</fullwidget>
<type itemtype="string">user</type>
<srcctl itemtype="boolean">y</srcctl>
<ticker itemtype="boolean">y</ticker>
<childlock itemtype="boolean">n</childlock>
<videomute itemtype="boolean">n</videomute>
<dcont itemtype="boolean">y</dcont>
<widgetname itemtype="string">App</widgetname>
<description itemtype="string"></description>
<width itemtype="string">1280</width>
<height itemtype="string">720</height>
<author itemtype="group">
<name itemtype="string"></name>
<email itemtype="string"></email>
<link itemtype="string"></link>
<organization itemtype="string">
</organization>
</author>
</widget>
https://stackoverflow.com/questions/19218316
复制相似问题