Skip to content

Commit

Permalink
明显区分进度与缓冲颜色
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoRanLiu3119 committed Jan 31, 2024
1 parent ddeffe6 commit c55cd1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,6 @@ private void initViewModel() {
sourceViewModel.detailResult.observe(this, new Observer<AbsXml>() {
@Override
public void onChanged(AbsXml absXml) {
LogUtils.d("detailResult onChanged");
if (absXml != null && absXml.movie != null && absXml.movie.videoList != null && absXml.movie.videoList.size() > 0) {
showSuccess();
mVideo = absXml.movie.videoList.get(0);
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/shape_player_control_vod_seek.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<solid android:color="@color/color_CC353744" />
<solid android:color="@color/light_gray_color" />
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<!-- 进度条颜色-->
<solid android:color="@color/color_353744" />
<solid android:color="@color/white" />
</shape>
</clip>
</item>
Expand Down

0 comments on commit c55cd1b

Please sign in to comment.