private String MOVIE_URL = "동영상 주소";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.video);
android.widget.VideoView vv = (android.widget.VideoView) findViewById(R.id.VideoView);
MediaController mediaController = new MediaController(this);
mediaController.setAnchorView(vv);
// Set video link (mp4 format )
Uri video = Uri.parse(MOVIE_URL);
vv.setMediaController(mediaController);
vv.setVideoURI(video);
vv.requestFocus();
vv.start();
}
java소스입니다. xml은..
<VideoView
android:id="@+id/VideoView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</VideoView>
이게 스트리밍으로 재생하는거고
인터넷연결 재생은
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("동영상 주소")));
입니다~ 참고하세요 ㅎㅎ
댓글 없음:
댓글 쓰기