我的家园
我的家园
导航
首页
管理
常用链接
我的随笔
我的评论
我的参与
最新评论
我的收藏
1
2
www.javady.com
www.javady.com
最新评论
1. re: CXF 入门:创建一个基于WS-Security标准的安全验证(CXF回调函数使用,)
@qping
写的真好,项目中要用,我试了一下,可以!万分感谢!!!
--李虎鹏
2. re: HTML的target属性中_blank、_self、_parent、_top含义[未登录]
111
--1
3. re: CXF 入门:创建一个基于WS-Security标准的安全验证(CXF回调函数使用,)
谢谢~
--qping
4. re: CXF 入门:创建一个基于WS-Security标准的安全验证(CXF回调函数使用,)[未登录]
好文章!
--hello
5. re: CXF 入门:创建一个基于SOAPHeader的安全验证(CXF拦截器使用)
楼主,soapheader 验证未通过,只能以抛出异常的方式防止继续访问webservice?
--jaja1900
Android VideoView播放视频
Posted on 2012-04-15 16:37
zljpp
阅读(761)
评论(0)
编辑
收藏
Android 利用自带VideoView控件播放视频
Activity
public class Activity01 extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); final VideoView videoView = (VideoView) findViewById(R.id.VideoView01); Button PauseButton = (Button) this.findViewById(R.id.PauseButton); Button LoadButton = (Button) this.findViewById(R.id.LoadButton); Button PlayButton = (Button) this.findViewById(R.id.PlayButton); // load LoadButton.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { // videoView.setVideoPath("/sdcard/test.mp4"); videoView.setVideoPath("android.resource://com.homer/"+R.raw.china); videoView.setMediaController(new MediaController(Activity01.this)); videoView.requestFocus(); } }); // play PlayButton.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { videoView.start(); } }); // pause PauseButton.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { videoView.pause(); } }); } }
main.xml
<?xml version="1.0" encoding="utf-8"?> <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <VideoView android:id="@+id/VideoView01" android:layout_width="320px" android:layout_height="240px" /> <Button android:id="@+id/LoadButton" android:layout_width="80px" android:layout_height="wrap_content" android:layout_x="30px" android:layout_y="300px" android:text="装载" /> <Button android:id="@+id/PlayButton" android:layout_width="80px" android:layout_height="wrap_content" android:layout_x="120px" android:layout_y="300px" android:text="播放" /> <Button android:id="@+id/PauseButton" android:layout_width="80px" android:layout_height="wrap_content" android:layout_x="210px" android:layout_y="300px" android:text="暂停" /> </AbsoluteLayout>
运行效果:
源码下载
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
Powered by:
BlogJava
Copyright © zljpp