8

我正面临使用闪烁的奇怪问题VideoView。当活动开始时,它会导致一小部分的轻微闪烁一秒钟。然后,视频开始。它在视频的顶部和底部显示 2 条黑线。请参阅下面的快照。

检查快照

我已经在 2 台设备上测试了我的应用程序

1) 三星 n-8000(平板电脑)

2)联想a-800

视频.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:background="#ffffff"
 android:gravity="center">

 <VideoView 
    android:id="@+id/vvSplash"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:background="#00ffffff">
</VideoView>

</LinearLayout>

活动代码:

private VideoView vd;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().requestFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.video);
    vd = (VideoView) findViewById(R.id.vvSplash);
    playVideo();
}

private void playVideo() {
    Uri uri = Uri.parse("android.resource://" + getPackageName() +"/"+ R.raw.intro);
    vd.setVideoURI(uri);
    vd.setMediaController(null);
    vd.start();     
}

任何帮助,将不胜感激。谢谢你。

4

7 回答 7

11

听起来很荒谬,但答案就在这里:

我重复解决方案,向那些发现的人致敬:

<SurfaceView
    android:layout_width="0px"
    android:layout_height="0px"
    android:visibility="gone" />

将表面视图添加到活动中的根视图而不是直接父视图是非常重要的。否则它将无法正常工作。

于 2014-12-05T01:21:54.427 回答
2

我也遇到了同样的问题,但通过将 videoview 的布局参数从包装内容更改为匹配父级来解决它。您还需要从 XML 中删除视频视图的背景属性。我希望它对你有用

于 2013-07-11T09:25:41.737 回答
1

对于未来的人:这个丑陋的错误似乎已经在 Marshmallow 中解决了。在我的工作中,我们正在使用 Xamarin 进行开发(因此,基本上,所有视图都是以编程方式添加的)。我们有一堆测试设备,我主要使用 Marshmallow 设备,所以在构建我正在处理的页面时,我从未注意到这个黑色闪烁。最后用棒棒糖设备测试后,我注意到了这个闪烁。

不幸的是,我没有解决方案。我们需要我们的应用程序尽可能跨平台,因此不鼓励使用布局 xml /sadface。

于 2016-03-02T01:12:01.300 回答
1

如果您的问题VideoView 在按下后退按钮时闪烁,只需在调用超级实现之前将您的VideoView可见性设置为INVISIBLEGONE在您的 Activity 的方法中。onBackPressed()

如果用户也可以通过“向上”按钮离开,拦截android.R.home选项项来隐藏VideoView

这是 Kotlin 中的一个示例:

override fun onOptionsItemSelected(item: MenuItem) = when (item.itemId) {
    android.R.id.home -> super.onOptionsItemSelected(item).also {
        video_view.visibility = GONE // Hide videoView before leaving to avoid flickering
    }
    R.id.action_share -> consume { shareVideo() } // Your regular menu options
    else -> super.onOptionsItemSelected(item)
}

override fun onBackPressed() {
    video_view.visibility = GONE // Hide videoView before leaving to avoid flickering
    super.onBackPressed()
}
于 2017-12-16T15:08:29.903 回答
0

只需从您的 xml 中删除以下行。

android:background="#00ffffff"

它会帮助你:)

于 2014-03-07T06:23:54.463 回答
0

对于仍然面临问题并且不知道如何使用上述答案的任何人。它只是简单地复制此代码并将其粘贴到您正在使用的主活动布局中videoview的主(第一个)布局下。

<SurfaceView
    android:layout_width="0px"
    android:layout_height="0px"
    android:visibility="gone" />

就我而言

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/Mainframlayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/facebookbgcolor" >
<SurfaceView
    android:layout_width="0px"
    android:layout_height="0px"
    android:visibility="gone" />
.....rest of the layout
于 2016-04-16T00:27:35.913 回答
0

改编了来自https://stackoverflow.com/a/27307286/38557的基于 xml 的解决方案,改为使用 Java 代码。在扩展布局之前,将其放在 Fragment 的 onCreateView() 中:

// Add a SurfaceView to prevent flickering when the video is loaded later.
SurfaceView surfaceView = new SurfaceView(getActivity());
surfaceView.setVisibility(View.GONE);
container.addView(surfaceView, new ViewGroup.LayoutParams(0, 0));

它做同样的事情,并且可以在您不能或不想更改 XML 时使用。

于 2016-06-22T11:16:16.283 回答