After including android:hardwareAccelerated="true"
in AndroidManifest.xml
file, WebView
video playing
perfectly in android 4.0 and above, But not in android 2.3.3 .
what is the problem?
After including android:hardwareAccelerated="true"
in AndroidManifest.xml
file, WebView
video playing
perfectly in android 4.0 and above, But not in android 2.3.3 .
what is the problem?
android:hardwareAccelerated="true"
从 Android 3.0 及更高版本开始支持。但是,如果您将其添加到您AndroidManifest
的targetSDK
API-11 或更高版本中。Apk 将在 Android 2.3 上运行,但android:hardwareAccelerated="true"
标志将被忽略。
要在 Android 2.3 中播放视频,您必须在视频视图中打开它。阅读以下链接了解更多详情:
http://www.longtailvideo.com/blog/31646/the-pain-of-live-streaming-on-android/