我正在尝试通过HTTP视频网址在视频视图中流式传输视频。我在视频的右侧有一个灰色空间。我已经将宽度设置为match_parent。我想以总屏幕宽度播放视频......有人可以建议做什么吗?
Xml是 -
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<FrameLayout android:layout_width="match_parent"
android:layout_height="wrap_content">
<VideoView android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="200dp"
android:clickable="true"
android:background="@drawable/previewimg"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true" />
<!-- ImageView button press video get start and remove the background Image of the -->
<ImageView android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:alpha="0.7"
android:src="@drawable/buttonredplay2"
/>
</FrameLayout>
</LinearLayout>
由AsyncTask设置的video_view VideoURI,在“onCreate”方法中调用。 首先,video_view显示完美如图1所示。