[Android VideoView #1] 동영상 재생하기

Posted by [하늘이]
2010. 11. 24. 14:59 IT/Android[안드로이드]
반응형

 가장 기본적인 재생 방법

[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줄이면 끝~~

반응형