<embed src="http://www.youtube.com/,......" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="100%"></embed>
html에 이렇게 만들었습니다.
앱에 들어가며은 동영상이 정지 화면이 보이고 클릭시에 동영상에 전체화면으로 보여지고 싶은데요
자바 소스에서 뭘 바꿔줘야 하나요?

자바 소스는 이렇게 해놨습니다.
shouldOverrideUrlLoading
if(url.startsWith("http://") || url.startsWith("https://")) {
view.loadUrl(url);
return true;
} else {
        boolean override = false;
             Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
             intent.addCategory(Intent.CATEGORY_BROWSABLE);
             intent.putExtra(Browser.EXTRA_APPLICATION_ID, getPackageName());
             try {
                 startActivity(intent);
                 override = true;
            } catch (ActivityNotFoundException ex) {
             }
             return override;
}