视频中的空白屏幕展开 android

Blank screen on video expand in android

我使用 街草播放器 为 android 创建了一个示例应用程序,它在纵向和横向模式下(按下展开按钮时)都运行良好。但是当我尝试为我正在创建的另一个应用程序集成相同的内容时,按下视频展开按钮时出现黑屏,但音频正在后台播放。无法理解发生这种情况的原因!我已经在下面解释了我正在处理的代码:

Mainactivity.java

jcVideoPlayerStandard = (JCVideoPlayerStandard) findViewById(R.id.custom_videoplayer_standard);
jcVideoPlayerStandard.setUp("http://2449.vod.myqcloud.com/2449_bfbbfa3cea8f11e5aac3db03cda99974.f20.mp4","");
ImageLoader.getInstance().displayImage("http://p.qpic.cn/videoyun/0/2449_bfbbfa3cea8f11e5aac3db03cda99974_1/640",jcVideoPlayerStandard.thumbImageView);

activity_main.xml

  <fm.jiecao.jcvideoplayer_lib.JCVideoPlayerStandard
            android:id="@+id/custom_videoplayer_standard"
            android:layout_width="match_parent"
            android:layout_marginTop="55dp"
            android:layout_height="250dp" />

还有一个单独的 java 文件,我将其包含在 AndroidManifest 文件中,但我非常确定它与错误无关。这是代码:

public class VideoApplication extends Application {

@Override
public void onCreate() {
    super.onCreate();
    LeakCanary.install(this);
    initUniversalImageLoader();
}

private void initUniversalImageLoader() {
    ImageLoaderConfiguration.Builder config = new ImageLoaderConfiguration.Builder(getApplicationContext());
    config.threadPriority(Thread.NORM_PRIORITY - 2);
    config.denyCacheImageMultipleSizesInMemory();
    config.diskCacheFileNameGenerator(new Md5FileNameGenerator());
    config.diskCacheSize(50 * 1024 * 1024); // 50 MiB
    config.tasksProcessingOrder(QueueProcessingType.LIFO);
    config.writeDebugLogs(); // Remove for releaseAllVideos app
    config.defaultDisplayImageOptions(getDefaultDisplayImageOption());
    // Initialize ImageLoader with configuration.
    ImageLoader.getInstance().init(config.build());
}

public static DisplayImageOptions getDefaultDisplayImageOption() {
    DisplayImageOptions options = new DisplayImageOptions.Builder()
            .showImageOnLoading(new ColorDrawable(Color.parseColor("#f0f0f0")))
            .resetViewBeforeLoading(true)
            .cacheInMemory(true)
            .cacheOnDisk(true)
            .considerExifParams(true)
            .imageScaleType(ImageScaleType.EXACTLY_STRETCHED)
            .bitmapConfig(Bitmap.Config.RGB_565)
            .displayer(new FadeInBitmapDisplayer(500)) 
            .build();
    return options;
}}

如果还有什么需要请告诉我,我只是想知道我哪里出错了。

注意 : 声望较高的人请创建一个标签 "JieCao-player" ,这在创建与此类别相关的问题时可能会有用。由于我没有足够的声誉,请有需要的人。

只需确保清单文件中的所有活动中的 "android:hardwareAccelerated" 设置为 true 即可。这样问题就解决了。