안드로이드/Android Intent로 Video 재생 프로그램 선택 하기
파일첨부 입니다.
스크린샷 입니다.
현재 동영상 주소로 플레이는 되지 않습니다. 올바른 동영상 Uri로 수정해 주시면 플레이 영상을 확인 할 수 있습니다.

package arabiannight.tistory.com;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
public class TestInterntChooserActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Intent i = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("http://www.youtube.com/embed/EyR9lx92x9A?rel=0");
i.setDataAndType(uri, "video/*");
startActivity(i);
}
}
파일첨부 입니다.
스크린샷 입니다.
현재 동영상 주소로 플레이는 되지 않습니다. 올바른 동영상 Uri로 수정해 주시면 플레이 영상을 확인 할 수 있습니다.
'Android > Intent' 카테고리의 다른 글
| 안드로이드/Android 단말마다 SMS, MMS, CALL 사용 여부 확인 하기~! (5) | 2012.05.28 |
|---|---|
| 안드로이드/Android intent(인텐트)를 사용해 보자. (intent filter) (17) | 2012.05.20 |
| 안드로이드/Android 안드로이드 Intent 그리고 PendingIntent 와 Intent Sender (4) | 2012.03.12 |
| 안드로이드/Android Intent로 데이터 주고 받기 (0) | 2012.02.03 |
| 안드로이드/Android Intent 활용 예시 (0) | 2012.02.03 |
TestInterntChooser.zip