我尝试为smartTV开发应用程序。我确实度过了两天,但没有达到要求。

我有一个奇怪的问题。

如果您单击下面的链接,您将看到smartTV的页面页面
http://portal.sinemalar.com/tv/vestel/v1/detail/48029/

如果要查看有关电影的更多详细信息,可以使用上下箭头键。

 case KEYS.UP:
            var $kayan = document.getElementById('ozet_p');
            if (!$kayan.style.top)
                $kayan.style.top = "0px";
            var $top = $kayan.style.top;
            $top = $top.substr(0,$top.length-2);
            $height = $kayan.offsetHeight;
            if (0<parseInt($top) + 120)
                $top = 0;
            else
                $top = parseInt($top) + 120;
            $kayan.style.top = $top+'px';
            break;
      case KEYS.DOWN:
            $kayan = document.getElementById('ozet_p');
            if (!$kayan.style.top)
                $kayan.style.top = "0px";
            $top = $kayan.style.top;
            $top = $top.substr(0,$top.length-2);
            $height = $kayan.offsetHeight;
            $max = 225-$height;
            if ($max<0)
            {
                if ($max>parseInt($top) - 120)
                    $top = $max;
                else
                    $top = parseInt($top) - 120;

                $kayan.style.top = $top+'px';
            }

            break;


这部分也可以在我的smartTV上正常工作

我还有一页显示电影评论

http://portal.sinemalar.com/tv/vestel/v1/comment/48029/1/1/1/1/

如果您想查看更多评论,也可以使用上下键。
这是它的代码

 case KEYS.UP:
            if ($page>1)
            {
                $page--;
                window.location.href = baseUrl+'comment/'+$movieId+'/'+$vPage+'/'+$yPage+'/'+$slot+'/'+$page+'/';
            }
            break;
        case KEYS.DOWN:
            $page++;
            window.location.href = baseUrl+'comment/'+$movieId+'/'+$vPage+'/'+$yPage+'/'+$slot+'/'+$page+'/';
            break;


问题是该部分在PC上可用,而在smartTV上不可用。

可能是什么问题?有什么建议吗?

最佳答案

您应该为电视打包应用程序,并在打开SDK IDE的同时在电视上运行该应用程序,在PC上进行开发时,它应该在同一位置显示调试信息。也许它将显示一些相关信息。

三星SmartTV仍然是非常不稳定且容易出错的平台。许多功能无法在SDK中使用,因此请确保在设备上对其进行测试。

09-26 01:56