Android多媒体播放功能的代码解析

我们曾经在其他文章中通过对录音以及录像的实现方法具体讲解过有关Android多媒体录制的相关操作技巧。在这里我们将会为大家详细介绍一下Android多媒体播放的应用方式,以帮助大家对这方面的应用知识有一个深刻的印象。

Android多媒体播放代码:

 
 
 
  1. import android.app.Activity;   
  2. import android.os.Bundle;   
  3. import android.view.View;   
  4. import android.view.View.OnClickListener;   
  5. import android.widget.Button;   
  6. import android.widget.VideoView;   
  7. public class VideoPlayer extends Activity   
  8. {   
  9. /**   
  10. Called when the activity is first created.   
  11. */ @Override   
  12. public void onCreate(Bundle icicle)   
  13. {   
  14. super.onCreate(icicle);   
  15. setContentView(R.layout.main);   
  16. final VideoView w =(VideoView)findViewById(R.id.vdoplayer);   
  17. Button cmdload = (Button)this.findViewById(R.id.cmd_load);   
  18. cmdload.setOnClickListener(new OnClickListener()  
  19. {   
  20. public void onClick(View arg0)   
  21. {   
  22. // TODO Auto-generated method stub   
  23. w.setVideoPath("/sdcard/android/kongfu.mp4");   
  24. }   
  25. }  
  26. );   
  27. Button cmdplay = (Button)this.findViewById(R.id.cmd_play);   
  28. cmdplay.setOnClickListener(new OnClickListener()  
  29. {   
  30. public void onClick(View arg0)   
  31. {   
  32. // TODO Auto-generated method stub   
  33. w.start();   
  34. }   
  35. }   
  36. );   
  37. Button cmdpause = (Button)this.findViewById(R.id.cmd_pause);   
  38. cmdpause.setOnClickListener(new OnClickListener()  
  39. {   
  40. public void onClick(View arg0)   
  41. {   
  42. // TODO Auto-generated method stub   
  43. w.pause();   
  44. }   
  45. }  
  46. );   
  47. }   
  48. }  
  49. main.xml: 

Android多媒体播放实现代码:

 
 
 
  1. < ?xml version="1.0" encoding="utf-8"?> 
  2. < LinearLayout xmlns:android=
    "http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 
  3. < Button android:id="@+id/cmd_load" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" android:text="load" /> 
  4. < Button android:id="@+id/cmd_play" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" android:text="Play" /> 
  5. < Button android:id="@+id/cmd_pause" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" android:text="pause" /> 
  6. < VideoView android:id="@+id/vdoplayer" 
    android:layout_width="fill_parent" 
    android:layout_height="300px" /> 
  7. < /LinearLayout>  

Android多媒体播放的具体代码编写方式就为大家介绍到这里。

【编辑推荐】

  1. Android target类型选择技巧
  2. Android录音失真具体解决方案
  3. Android屏幕大小相关技巧应用指南
  4. Android多媒体录制功能的实现方式介绍
  5. Android图片大小调整动态实现方法

网页题目:Android多媒体播放功能的代码解析
URL网址:http://www.shufengxianlan.com/qtweb/news44/451844.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联