WebView에서 YOUTUBE 동영상 플레이 방법

http://bajutae.tistory.com/18

1) 클래스에서 웹뷰를 선언한뒤


 Object[] mWeb = (WebView) findViewById(R.id.wv_1);
mWeb.setWebViewClient(new MyWebClient());        
WebSettings set = mWeb.getSettings();        
set.setJavaScriptEnabled(true);        
set.setBuiltInZoomControls(true);        
set.setLoadsImagesAutomatically(true);        
set.setCacheMode(WebSettings.LOAD_NO_CACHE);        
set.setUserAgent(1);        
set.setSupportMultipleWindows(false);        
set.setPluginsEnabled(true);        
final String mimeType = "text/html";        
final String encoding = "utf-8";        
mWeb.loadData(url, mimeType, encoding);


2) 유투브에서 플레이할 동영상을 찾은 뒤 소스보기를 클릭해서 소스를 복사한다.

3) 웹뷰에서 부를 URL을 String에 복사합니다. ("따옴표 부분은 앞에 \를 추가해서 에러를 막아주는 센스! )


 String tempUrl = "<object width=\"640\" height=\"385\"><param name=\"movie\" value=\"http://www.youtube.com/v/Ih6GdblCE8U?fs=0&amp;hl=ko_KR\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/Ih6GdblCE8U?fs=1&amp;hl=ko_KR\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"640\" height=\"385\"></embed></object>";

댓글

이 블로그의 인기 게시물

유니티 오브젝트 서서히 사라지게