Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
chenjun
2024-08-30 16:15:19 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8dc240f555cc8a7eaad78ae7199ecb580d9ecab8
8dc240f5
1 parent
388db238
新增全屏播放图片,返回更改
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerFullScreenView.ets
sight_harmony/features/wdDetailPlayShortVideo/src/main/resources/base/media/ic_pause_2.png
sight_harmony/features/wdDetailPlayShortVideo/src/main/resources/base/media/ic_play_2.png
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerFullScreenView.ets
View file @
8dc240f
...
...
@@ -85,7 +85,7 @@ export struct PlayerFullScreenView {
headerBuilder() {
Row() {
Row() {
Image($r(`app.media.ic
_back
`)).height(24).width(24)
Image($r(`app.media.ic
on_arrow_left_white
`)).height(24).width(24)
.onClick(() => {
this.displayDirection = this.displayDirection == DisplayDirection.VERTICAL ?
DisplayDirection.VIDEO_HORIZONTAL :
...
...
@@ -144,12 +144,12 @@ export struct PlayerFullScreenView {
.visibility(this.isDragging ? Visibility.Visible : Visibility.None)
Row() {
Image($r(`app.media.ic_play`)).height(24).width(24)
Image($r(`app.media.ic_play
_2
`)).height(24).width(24)
.visibility(this.status === PlayerConstants.STATUS_START ? Visibility.None : Visibility.Visible)
.onClick(() => {
this.playerController?.switchPlayOrPause()
})
Image($r(`app.media.ic_pause`)).height(24).width(24)
Image($r(`app.media.ic_pause
_2
`)).height(24).width(24)
.visibility(this.status === PlayerConstants.STATUS_PAUSE ? Visibility.None : Visibility.Visible)
.onClick(() => {
this.playerController?.switchPlayOrPause()
...
...
sight_harmony/features/wdDetailPlayShortVideo/src/main/resources/base/media/ic_pause_2.png
0 → 100644
View file @
8dc240f
571 Bytes
sight_harmony/features/wdDetailPlayShortVideo/src/main/resources/base/media/ic_play_2.png
0 → 100644
View file @
8dc240f
655 Bytes
Please
register
or
login
to post a comment