0
A
回答
1
這真的不是一個沒有更多細節的答覆問題。有不同的做法。執行的最簡單方法就是您所描述的將與roScreen或roImagecanvas一起使用,但這些選擇中的每一個都需要更多的問題。 查看Roku SDK中的示例。找到看起來有趣的東西,並側重加載它們並查看源代碼,您會在那裏找到許多答案。
0
首先創建這些文件:在源文件夾main.brs,LayoutTop.xml,LayoutTop.brs,HomeScene.xml和components.Then HomeScene.brs在這些文件中添加以下代碼: main.brs文件:
sub Main()
showSGScreen()
end sub
sub showSGScreen()
screen = CreateObject("roSGScreen")
m.port = CreateObject("roMessagePort")
screen.setMessagePort(m.port)
m.scene = screen.CreateScene("HomeScene")
screen.show()
while(true)
msg = wait(0, m.port)
msgType = type(msg)
if msgType = "roSGScreenEvent"
if msg.isScreenClosed() then return
end if
end while
end sub
LayoutTop.xml:
<?xml version="1.0" encoding="UTF-8"?>
<component name="layoutTop" extends="Group" xsi:noNamespaceSchemaLocation="https://devtools.web.roku.com/schema/RokuSceneGraph.xsd">
<script type="text/brightscript" uri="pkg:/components/LayoutTop.brs"/>
<children>
<Poster
id="backgroundPoster"
uri="pkg:/images/backgroundTop.jpg"
width="1920"
height="150"
translation="[0, 0]"
/>
<Poster
id="icon"
uri="pkg:/images/html5.png"
width="128"
height="128"
translation="[10, 10]"
/>
</children>
</component>
LayoutTop.brs:
sub init()
end sub
HomeScene.xml:
<?xml version="1.0" encoding="UTF-8"?>
<component name = "HomeScene" extends = "Scene" >
<script type="text/brightscript" uri="pkg:/components/HomeScene.brs"/>
<children>
<Poster
id="background"
uri="pkg:/images/background.jpg"
width="1920"
height="1080"
translation="[0, 0]"
/>
<Group >
<layoutTop
translation="[0, 0]"
/>
</Group>
</children>
</component>
HomeScene.brs:
sub init()
end sub
相關問題
- 1. 創建基本應用程序 - MEAN
- 2. 從Roku應用程序開發
- 3. 應用程序突然崩潰Roku
- 4. 基本聊天應用程序使用Socket.io和Node js創建
- 5. 創建與Rails的一個基本的Facebook應用程序
- 6. 指導創建「基本」Java Web應用程序
- 7. 基於iPhone/iPad的應用程序創建文本內容
- 8. 如何創建基本的托盤圖標應用程序?
- 9. 如何創建本地化的基地應用程序android
- 10. 如何創建基本的跨平臺應用程序
- 11. 創建一個基本的網絡應用程序
- 12. 創建基本內容瀏覽iPhone應用程序
- 13. 從另一個基本應用程序創建應用程序時更改應用程序標識
- 14. 創建一個基本繪圖程序
- 15. 爲X86創建本機應用程序?
- 16. 創建本地Web應用程序
- 17. 爲基於JavaScript的應用程序創建安裝程序
- 18. 創建反應本機應用程序 - 使用本機模塊
- 19. 創建子應用程序
- 20. 上創建應用程序
- 21. 創建Android應用程序
- 22. 創建應用程序
- 23. 創建WiFi應用程序
- 24. Jawbone創建應用程序
- 25. 創建Web應用程序
- 26. 創建Facebook應用程序
- 27. 創建Google+應用程序
- 28. 創建Twitter應用程序
- 29. 創建Facebook應用程序
- 30. 創建Android應用程序
燦你張貼了c _basic hello world program的頌歌too_? – Shashanth