私のアプリには、ユーザーがビデオの URL をクリックできる webview があります。ネイティブ プレーヤーがトップになり、ユーザーはビデオを見ることができます。ただし、常に縦モードで開きます。ビデオを風景モードで開始したい。どうすればこれを達成できますか?
if(url.endsWith(".mp4")) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(url), "video/*");
view.getContext().startActivity(intent);
return true;
} else {