登录
首页 » Android » Android VideoView的控件播放视频简单例子

Android VideoView的控件播放视频简单例子

于 2022-05-10 发布 文件大小:60.83 kB
0 115
下载积分: 2 下载次数: 1

代码说明:

Android VideoView的控件播放视频简单例子,这是最近在写一个Android项目时,需要用到视频播放的功能,索性直接使用了Android系统内自带的VideoView控件,对功能要求不太多,所以也可以满足应用,压缩包内包括了两个VideoView用法的例子:   public void onCreate(Bundle savedInstanceState)   {    super.onCreate(savedInstanceState);    setContentView(R.layout.main);    // 获取界面上VideoView组件    videoView = (VideoView) findViewById(R.id.video);    // 创建MediaController对象    mController = new MediaController(this);    File video = new File("/mnt/sdcard/test.mp4");    if(video.exists())    {    videoView.setVideoPath(video.getAbsolutePath());    // 设置videoView与mController建立关联    videoView.setMediaController(mController);    // 设置mController与videoView建立关联    mController.setMediaPlayer(videoView);    // 让VideoView获取焦点    videoView.requestFocus();    }   }

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 安卓(Android)下操作NFC读写器IC卡读卡器的代码
    安卓(Android)下操作NFC读写器IC卡读卡器的代码,支持的卡片有M1卡,CPU卡等,采用USB接口的IC卡读卡器YW-605HA或者NFC读写器YW-605
    2022-02-14 10:08:56下载
    积分:1
  • Android 在状态栏添加Notification信息图标及提示
    这个例子演示Android 在状态栏添加Notification信息图标及提示,相信大家对这个功能已经不陌生了,手机中安装的APP,一般都会在后台运行,时不时会在手机顶部的状态栏中显示应用的图标,滑出状态栏会看到详细的信息,本例子就是模拟实现了此功能:   Intent i = new Intent(Sample_6_10.this, NotifiedActivity.class);   PendingIntent pi = PendingIntent.getActivity(Sample_6_10.this, 0, i, 0);   Notification myNotification = new Notification();//创建一个Notification对象   myNotification.icon=R.drawable.header;//Notification的图标   myNotification.tickerText=getResources().getString(R.string.notification);   myNotification.defaults=Notification.DEFAULT_SOUND;   myNotification.setLatestEventInfo(Sample_6_10.this, "示例", "点击查看", pi);   NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);   notificationManager.notify(0, myNotification);//发送Notification
    2022-06-26 12:21:22下载
    积分:1
  • AnalyzeXML
    android编程中解析XML文档的初级应用示例(primary application example android programming for parsing XML documents)
    2012-12-21 11:38:54下载
    积分:1
  • Android TTS语音播报
    Android TTS语音播报,可以选择多种语言进行播报。可以下载来学习。
    2023-09-06 10:35:04下载
    积分:1
  • a tool to monitor current traffic of total mobile system including average traffic speed and runtime
    一个小工具 采用android系统api 可以监测系统应用的流量使用和当前网速
    2022-08-09 15:37:38下载
    积分:1
  • sensortest
    Android触摸屏的简易传感器测试程序(Touchscreen test applet for Android)
    2012-01-19 10:23:37下载
    积分:1
  • android 多文件上传(有进度条)例子源码
    用于多文件上传到服务器,并且有进度条提示
    2015-05-29下载
    积分:1
  • Open Lights
    这个程序是开源的。
    2022-03-20 13:43:36下载
    积分:1
  • baofengyingyin
    说明:  A UI project source code that imitates storm video and audio. The imitated interface includes menu pages, home pages, classification pages, etc. The local analog data used for all data in the project. The imitated degree will be problematic in layout and display on high-resolution devices. The resolution of 480 x 800 should be just right.
    2020-06-15 22:40:02下载
    积分:1
  • Android开发QQ开源项目代码 实例下载
    Android开发QQ开源项目代码 实例下载
    2014-09-28下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载