私は 2 つのアクティビティを持っていVideoView
ますMediaPlayer
。
最初のアクティビティでビデオの視聴を開始し、再生中に 2 番目のアクティビティを開始します。
最初のアクティビティに戻った後、音は聞こえますが画像が表示されません。
マイ ビデオ レイアウト:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<VideoView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1"
android:id="@+id/videoView" android:layout_gravity="center" />
<ListView android:layout_width="fill_parent" android:layout_height="125dp"
android:id="@+id/ListView" />
</LinearLayout>
ビデオが表示されない理由はありますか?