Android笔记:视屏播放、VideoView、surfaceView,简易视频播放
一、VideoView方法 1.activity_video.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <RelativeLayoutxmlns:android= "http://schemas.android.com/apk/res/android" xmlns:tools= "http://schemas.android.com/tools" android:layout_width= "match_parent" android:layout_height= "match_parent" tools:context= ".VideoActivity" > <VideoView android:id= "@+id/video_videoView" android:layout_width= "fill_parent" android:layout_height= "fill_parent" android:layout_alignParentLeft= "true" android:layout_alignPa...
