在播放视频时滚动Horizontal RecyclerView
时,videoView
的边缘会显示墙纸。
我尝试了vieoView
,ExoPlayer
,surfaceView
。但是所有都显示出相同的问题。当videoView
替换为imageView
时,问题就可以解决。
<hu.lacroix82.stretchtopviewlibrary.StretchTopScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/stretchTopView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="150dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.constraint.ConstraintLayout
android:id="@+id/cl_root"
android:layout_width="match_parent"
android:layout_height="400dp"
android:background="@color/background_main">
<VideoView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent" />
......
.......
.......
答案 0 :(得分:1)
首先,检查您为此活动使用了哪个主题。它是否是透明主题?由于您已经尝试了多个视频播放库,并且同一问题不断增加,所以从编码方面来看,我认为这不是问题。这必须来自您的活动主题,因此请将您的活动主题更改为一些纯色的深色主题。让我知道问题是否解决了?