[Android VideoView #1] 동영상 재생하기
가장 기본적인 재생 방법
[layout]
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
[Source]
private VideoView mVideoView
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mVideoView = (VideoView)findViewById(R.id.VideoView1);
mVideoView.setVideoPath("/sdcard/CJ2_CF04.mp4");
mVideoView.start();
}
layout 에서 작성한 VideoView를 가지고 오자.
가지고 온 view에 재생할 파일의 path를 연결한다.
그리고 바로 재생하면 된다.
파일만 재생하는데는 이렇게 3줄이면 끝~~
'IT > Android[안드로이드]' 카테고리의 다른 글
[ListView #1] ListView하나만 보여주기. (0) | 2010.11.25 |
---|---|
[Android VideoView #2] 동영상재생 (0) | 2010.11.24 |
[Android MediaPlayer #2] 기본 사용법 (0) | 2010.11.24 |
[Android MediaPlayer #1] 기본 사용법 (0) | 2010.11.24 |
[Android] Layout Xml 생성 Tool 및 url 정보 (0) | 2010.11.24 |