VideoView播放正常,但在交换全屏视图时不可见

时间:2010-09-24 15:19:59

标签: android video media-player android-videoview

我有一些AsyncTask将视频流加载到播放器中,因此我想在其执行时显示一些加载屏幕。目前,我的onCreate代码如下所示:

final View loadingView = getLayoutInflater().inflate(R.layout.video_loading, null);
final View playerView = getLayoutInflater().inflate(R.layout.player, null);
final VideoView videoView = (VideoView) playerView.findViewById(R.id.canvas);

Log.d(TAG, "Running video player for video " + videoId);

new VideoPlayingTask(this, videoView.getHolder()) {

    protected void onPreExecute() {
        setContentView(loadingView);
        super.onPreExecute(); // it creates or re-uses (resetting it before)
                            // MediaPlayer instance inside and sets display using setDisplay to the passed holder
    };

    protected void onPostExecute(FileInputStream dataSource) {

        setContentView(playerView);
        videoView.requestFocus();
        super.onPostExecute(dataSource); // it sets data source, 
                                        // prepares player and starts it
    };

 }.execute(videoId);
正确显示

loadingView,然后在将内容更改为playerView时,屏幕变黑,但声音在后台播放正常。

我在日志中从MediaPlayer收到这两个警告:

info/warning (1, 35)
info/warning (1, 44)

我尝试使用ViewSwither并在showNextView内拨打onPostExecute,但行为相似,更改为videoView时出现黑屏。

我已经尝试了两种内部布局放置在内部电流并手动切换其可见性的方式,这对我也没有帮助。

当我在此活动中仅使用单个VideoView时,它可以完美地运行并显示图像和声音。

video_loading.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"               
              android:gravity="center">
    <ProgressBar android:layout_width="@dimen/small_progress_side"
                 android:layout_height="@dimen/small_progress_side" />
    <TextView android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_marginLeft="5dp"
              android:text="@string/caching_video" />
</LinearLayout>

player.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent">
    <VideoView android:id="@+id/canvas"
               android:layout_width="fill_parent"
               android:layout_height="fill_parent" />
</LinearLayout> 

this question似乎有点类似,但将loadingView知名度转换为INVISIBLE在我的情况下无效。

1 个答案:

答案 0 :(得分:0)

我刚刚使用ProgressDialog.show()而不是翻转视图,它更简单,VideoView正确处理它。