[文章]DAYU200 | 分布式遥控器

阅读量 0
0
0
1.概述
目前家庭电视机主要通过其自带的遥控器进行操控,实现的功能较为单一。例如,当我们要在TV端搜索节目时,电视机在遥控器的操控下往往只能完成一些字母或数字的输入,而无法输入其他复杂的内容。分布式遥控器将手机的输入能力和电视遥控器的遥控能力结合为一体,从而快速便捷操控电视。

分布式遥控器的实现基于OpenHarmony的分布式能力和RPC通信能力,UI使用eTS进行开发。如下图所示,分别用两块开发板模拟TV端和手机端。

分布式组网后可以通过TV端界面的Controller按钮手动拉起手机端的遥控界面,在手机端输入时会将输入的内容同步显示在TV端搜索框,点击搜索按钮会根据输入的内容搜索相关节目。

还可以通过点击方向键(上下左右)将焦点移动到我们想要的节目上,再点击播放按钮进行播放,按返回按钮返回TV端主界面。

同时还可以通过手机遥控端关机按钮同时关闭TV端和手机端界面。

UI效果图如下:
图1 TV端主页默认页面

图2 手机端遥控页面

图3 TV端视频播放页面


2.实现TV端界面
在本章节中,您将学会开发TV端默认界面和TV端视频播放界面,示意图参考第一章图1和图3所示。

建立数据模型,将图片ID、图片源、图片名称和视频源绑定成一个数据模型。详情代码可以查看MainAbility/model/PicData.ets和MainAbility/model/PicDataModel.ets两个文件。

实现TV端默认页面布局和样式。
在MainAbility/pages/TVIndex.ets 主界面文件中添加入口组件。页面布局代码如下:
  1. // 入口组件
  2. @Entry
  3. @Component
  4. struct Index {
  5. private letters: string[] = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
  6. private source: string
  7. @State text: string = ''
  8. @State choose: number = -1

  9. build() {
  10. Flex({ direction: FlexDirection.Column }) {
  11. TextInput({text: this.text, placeholder: 'Search' })
  12. .onChange((value: string) => {
  13. this.text = value
  14. })

  15. Row({space: 30}) {
  16. Text('Clear')
  17. .fontSize(16)
  18. .backgroundColor('#ABB0BA')
  19. .textAlign(TextAlign.Center)
  20. .onClick(() => {
  21. this.text = ''
  22. })
  23. .clip(true)
  24. .borderRadius(10)

  25. Text('Backspace')
  26. .fontSize(16)
  27. .backgroundColor('#ABB0BA')
  28. .textAlign(TextAlign.Center)
  29. .onClick(() => {
  30. this.text = this.text.substring(0, this.text.length - 1)
  31. })
  32. .clip(true)
  33. .borderRadius(10)

  34. Text('Controller')
  35. .fontSize(16)
  36. .backgroundColor('#ABB0BA')
  37. .textAlign(TextAlign.Center)
  38. .onClick(() => {
  39. ......
  40. })
  41. .clip(true)
  42. .borderRadius(10)

  43. }

  44. Grid() {
  45. ForEach(this.letters, (item) => {
  46. GridItem() {
  47. Text(item)
  48. .fontSize(20)
  49. .backgroundColor('#FFFFFF')
  50. .textAlign(TextAlign.Center)
  51. .onClick(() => {
  52. this.text += item
  53. })
  54. .clip(true)
  55. .borderRadius(5)
  56. }
  57. }, item => item)

  58. }
  59. .rowsTemplate('1fr 1fr 1fr 1fr')
  60. .columnsTemplate('1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr')
  61. .columnsGap(8)
  62. .rowsGap(8)
  63. .width('75%')
  64. .height('25%')
  65. .margin(5)
  66. .backgroundColor('#D2D3D8')
  67. .clip(true)
  68. .borderRadius(10)

  69. Grid() {
  70. ForEach(this.picItems, (item: PicData) => {
  71. GridItem() {
  72. PicGridItem({ picItem: item })
  73. }
  74. }, (item: PicData) => item.id.toString())
  75. }
  76. .rowsTemplate('1fr 1fr 1fr')
  77. .columnsTemplate('1fr 1fr')
  78. .columnsGap(5)
  79. .rowsGap(8)
  80. .width('90%')
  81. .height('58%')
  82. .backgroundColor('#FFFFFF')
  83. .margin(5)
  84. }
  85. .width('98%')
  86. .backgroundColor('#FFFFFF')
  87. }
  88. }
复制代码
其中PicGridItem将PicItem的图片源和图片名称绑定,实现代码如下:
  1. // 九宮格拼图组件
  2. @Component
  3. struct PicGridItem {
  4. private picItem: PicData
  5. build() {
  6. Column() {
  7. Image(this.picItem.image)
  8. .objectFit(ImageFit.Contain)
  9. .height('85%')
  10. .width('100%')
  11. .onClick(() => {
  12. ......
  13. })
  14. })
  15. Text(this.picItem.name)
  16. .fontSize(20)
  17. .fontColor('#000000')
  18. }
  19. .height('100%')
  20. .width('90%')
  21. }
  22. }
复制代码
实现TV端视频播放界面。
在MainAbility/pages/VideoPlay.ets 文件中添加组件。页面布局代码如下:
  1. import router from '@system.router'
  2. @Entry
  3. @Component
  4. struct Play {
  5. // 取到Index页面跳转来时携带的source对应的数据。
  6. private source: string = router.getParams().source

  7. build() {
  8. Column() {
  9. Video({
  10. src: this.source,
  11. })
  12. .width('100%')
  13. .height('100%')
  14. .autoPlay(true)
  15. .controls(true)
  16. }
  17. }
  18. }
复制代码
在MainAbility/pages/TVIndex.ets中,给PicGridItem的图片添加点击事件,点击图片即可播放PicItem的视频源。实现代码如下:
  1. Image(this.picItem.image)
  2. ......
  3. .onClick(() => {
  4. router.push({
  5. uri: 'pages/VideoPlay',
  6. params: { source: this.picItem.video }
  7. })
  8. })
复制代码
3、实现手机遥控端界面
在本章节中,您将学会开发手机遥控端默认界面,示意图参考第一章图2所示。
PhoneAbility/pages/PhoneIndex.ets 主界面文件中添加入口组件。页面布局代码如下:
  1. @Entry
  2. @Component
  3. struct Index {
  4. build() {
  5. Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center }) {
  6. Row() {
  7. Image($rawfile('TV.png'))
  8. .width(25)
  9. .height(25)
  10. Text('华为智慧屏').fontSize(20).margin(10)
  11. }
  12. // 文字搜索框
  13. TextInput({ placeholder: 'Search' })
  14. .margin(20)
  15. .onChange((value: string) => {
  16. if (connectModel.mRemote){
  17. ......
  18. }
  19. })

  20. Grid() {
  21. GridItem() {
  22. // 向上箭头
  23. Button({ type: ButtonType.Circle, stateEffect: true }) {
  24. Image($rawfile('up.png')).width(80).height(80)
  25. }
  26. .onClick(() => {
  27. ......
  28. })
  29. .width(80)
  30. .height(80)
  31. .backgroundColor('#FFFFFF')
  32. }
  33. .columnStart(1)
  34. .columnEnd(5)

  35. GridItem() {
  36. // 向左箭头
  37. Button({ type: ButtonType.Circle, stateEffect: true }) {
  38. Image($rawfile('left.png')).width(80).height(80)
  39. }
  40. .onClick(() => {
  41. ......
  42. })
  43. .width(80)
  44. .height(80)
  45. .backgroundColor('#FFFFFF')
  46. }

  47. GridItem() {
  48. // 播放键
  49. Button({ type: ButtonType.Circle, stateEffect: true }) {
  50. Image($rawfile('play.png')).width(60).height(60)
  51. }
  52. .onClick(() => {
  53. ......
  54. })
  55. .width(80)
  56. .height(80)
  57. .backgroundColor('#FFFFFF')
  58. }

  59. GridItem() {
  60. // 向右箭头
  61. Button({ type: ButtonType.Circle, stateEffect: true }) {
  62. Image($rawfile('right.png')).width(70).height(70)
  63. }
  64. .onClick(() => {
  65. ......
  66. })
  67. .width(80)
  68. .height(80)
  69. .backgroundColor('#FFFFFF')
  70. }

  71. GridItem() {
  72. // 向下箭头
  73. Button({ type: ButtonType.Circle, stateEffect: true }) {
  74. Image($rawfile('down.png')).width(70).height(70)
  75. }
  76. .onClick(() => {
  77. ......
  78. })
  79. .width(80)
  80. .height(80)
  81. .backgroundColor('#FFFFFF')
  82. }
  83. .columnStart(1)
  84. .columnEnd(5)
  85. }
  86. .rowsTemplate('1fr 1fr 1fr')
  87. .columnsTemplate('1fr 1fr 1fr')
  88. .backgroundColor('#FFFFFF')
  89. .margin(10)
  90. .clip(new Circle({ width: 325, height: 325 }))
  91. .width(350)
  92. .height(350)

  93. Row({ space:100 }) {
  94. // 返回键
  95. Button({ type: ButtonType.Circle, stateEffect: true }) {
  96. Image($rawfile('return.png')).width(40).height(40)
  97. }
  98. .onClick(() => {
  99. ......
  100. })
  101. .width(100)
  102. .height(100)
  103. .backgroundColor('#FFFFFF')

  104. // 关机键
  105. Button({ type: ButtonType.Circle, stateEffect: true }) {
  106. Image($rawfile('off.png')).width(40).height(40)
  107. }
  108. .onClick(() => {
  109. ......
  110. })
  111. .width(100)
  112. .height(100)
  113. .backgroundColor('#FFFFFF')

  114. // 搜索键
  115. Button({ type: ButtonType.Circle, stateEffect: true }) {
  116. Image($rawfile('search.png')).width(40).height(40)
  117. }
  118. .onClick(() => {
  119. ......
  120. })
  121. .width(100)
  122. .height(100)
  123. .backgroundColor('#FFFFFF')
  124. }
  125. .padding({ left:100 })
  126. }
  127. .backgroundColor('#E3E3E3')
  128. }
  129. }
复制代码

回帖

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表德赢Vwin官网 网立场。文章及其配图仅供工程师学习之用,如有内容图片侵权或者其他问题,请联系本站作侵删。 侵权投诉
链接复制成功,分享给好友