码迷,mamicode.com
首页 > 移动开发 > 详细

android学习之播放视频

时间:2015-04-12 17:32:47      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

  今天学习了如何使用VideoView类将视频嵌入到应用程序中,具体代码如下。

 1 public class TestVideo extends ActionBarActivity {
 2 
 3     @Override
 4     protected void onCreate(Bundle savedInstanceState) {
 5         super.onCreate(savedInstanceState);
 6         setContentView(R.layout.activity_test_video);
 7 
 8         VideoView video = (VideoView)findViewById(R.id.video);
 9         video.setVideoURI(Uri.parse("android.resource://com.example.gboy.testvideo/"+R.raw.video));
10         //android:resource://是固定的,com.example.gboy.testvideo是我的包名,R.raw.vedio是res/raw中的视频文件video.mp4
11         video.start();
12     }
13 }

xml文件:

<FrameLayout xmlns: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">

    <VideoView
        android:id="@+id/video"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"/>
    
</FrameLayout>

 

android学习之播放视频

标签:

原文地址:http://www.cnblogs.com/webberji/p/4419768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!