리비전 93, 0.8 kB
(mefour에 의해 체크인됨, 15 년 전)
|
--
|
Line | |
---|
1 |
package soo.media; |
---|
2 |
|
---|
3 |
import android.app.Activity; |
---|
4 |
import android.net.Uri; |
---|
5 |
import android.os.Bundle; |
---|
6 |
import android.widget.MediaController; |
---|
7 |
import android.widget.VideoView; |
---|
8 |
|
---|
9 |
public class VideoTest extends Activity { |
---|
10 |
/** Called when the activity is first created. */ |
---|
11 |
private static final String PATH="/sdcard/"; |
---|
12 |
private static final String URL="http://www.archive.org/download/Unexpect2001/Unexpect2001_512kb.mp4"; |
---|
13 |
@Override |
---|
14 |
public void onCreate(Bundle savedInstanceState) { |
---|
15 |
super.onCreate(savedInstanceState); |
---|
16 |
setContentView(R.layout.main); |
---|
17 |
|
---|
18 |
VideoView vv = (VideoView)findViewById(R.id.videoView01); |
---|
19 |
MediaController mc = new MediaController(this); |
---|
20 |
Uri uri = Uri.parse("/sdcard/ttt.mp4"); |
---|
21 |
//Uri uri = Uri.parse(URL); |
---|
22 |
vv.setMediaController(mc); |
---|
23 |
vv.setVideoURI(uri); |
---|
24 |
} |
---|
25 |
} |
---|