2014. 11. 18. 23:03ㆍMobile/Android
안드로이드 비디오 재생
간단한 Intent 로 통한 동영상재생이 가능하다 동영상이 가능한 url 을 입력 해주시면 됩니다~
현재는 없는 url 이라 2번 같은 그림이 나오고 있습니다~~~
소스는 맨 밑 참고~
1.
2.
package com.example.etestset;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
public class test1 extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_common);
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("http://www.youtube.com/blablabla~~~~~");
intent.setDataAndType(uri, "video/*");
startActivity(intent);
}
}
끝~
'Mobile > Android' 카테고리의 다른 글
안드로이드 gcm 등록 (0) | 2014.11.25 |
---|---|
안드로이드 반투명 액티비티 (0) | 2014.11.20 |
svn 계정 변경 (0) | 2014.11.17 |
이클립스 디버깅 (0) | 2014.11.16 |
안드로이드 5.0 롤리팝 기능 및 대응 (0) | 2014.11.09 |