我有一个简单的布局,其中一个FrameLayout用于显示全屏视频和WebView:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/frameLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal" >
</FrameLayout>
<WebView
android:id="@+id/webView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true" />
WebView显示带有视频定义的简单html5页面。
onShowCustomView的主体是:
@Override
public void onShowCustomView(View view, CustomViewCallback callback) {
super.onShowCustomView(view, callback);
FrameLayout frameLayout = (FrameLayout) findViewById(R.id.frameLayout);
FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(
ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.FILL_PARENT, Gravity.CENTER);
frameLayout.removeAllViews();
frameLayout.addView(view, layoutParams);
frameLayout.setVisibility(View.VISIBLE);
}
如何从onShowCustomView访问视频对象? 当我试图获得framelayout的焦点子项并将其转换为VideoView时,我得到一个ClassCastException(我有一个HTML5VideoFullScreen对象)。
请帮忙。
答案 0 :(得分:1)
我一直注意到从Ice Cream Sandwich(Android 4.0)开始,VideoView不用于视频播放。有一些新的对象,比如你提到的HTML5VideoFullScreen,它们有自己的MediaPlayers而不是默认的VideoView。
为什么需要VideoView?