2012-10-25 143 views
0

我知道這方面有很多問題和答案,但我經歷了所有,但我找不到任何解決方案,而且差不多兩個月我一次又一次遇到這個問題「對不起這個視頻不能播放」。Android:很抱歉,這段視頻無法在視頻播放中播放

這裏是我的xml文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
> 

<VideoView 
    android:id="@+id/booksanimation" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    /> 
</RelativeLayout> 

這裏是我的代碼..

getWindow().setFormat(PixelFormat.TRANSLUCENT); 
    videoview = (VideoView) findViewById(R.id.booksanimation); 
    videoview.setVideoURI(Uri.parse("android.resource://com.d4sys.sabaq/" + R.raw.booksanimation)); 
    videoview.setMediaController(new MediaController(this)); 
    videoview.requestFocus(); 
    videoview.start(); 

我不知道是什麼的問題,有時當我把不同分辨率的另一個視頻,該視頻被播放,但不是所有的視頻都播放。 如果某些視頻在平板電腦上播放,它不會在小設備上播放, 有什麼問題?

+0

問題的所有格式是一些視頻文件可以平板設備上播放,但不能在手機上?有些視頻根本無法播放? – petrsyn

回答

1

你檢查視頻格式?不是由Android 原生支持我以前遇到類似的問題,最後我改變所有MOV到MP4

http://developer.android.com/guide/appendix/media-formats.html