我过去常常对新的YouTube意图应用以下建议。
Android TV embedded youtube 1080p
String videoId = "dQw4w9WgXcQ";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:" + videoId));
intent.putExtra("force_fullscreen", true);
intent.putExtra("finish_on_ended", true);
startActivity(intent);
对于YouTube v1.3.11,可以按遥控器的“返回”按钮1次以回到呼叫意图,但在YouTube更新到v2.00.17之后。我会见:
按“返回”按钮,会出现一个对话框"您确定要退出YouTube吗?"
然而,没有办法真正退出这个 时间到了,即使我一直按下Back并选择EXIT。
然后我尝试将putExtra命令标记如下:
String videoId = "dQw4w9WgXcQ";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:" + videoId));
//intent.putExtra("force_fullscreen", true);
//intent.putExtra("finish_on_ended", true);
startActivity(intent);
新的YouTube意图变得正常,但我需要按 3 次以返回到调用意图。
在YouTube v2.00.17上,是否可以按<返回 1 时间返回?感谢。