gpt4 book ai didi

android - 从我的应用程序搜索 Youtube 应用程序中的特定字符串

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:50:06 25 4
gpt4 key购买 nike

我有一个按钮,当我点击它时,我想调用 Youtube 应用程序并搜索预定义的字符串(搜索字符串是不变的,我的意思是 Youtube 应用程序将自动显示结果)。我知道为了搜索 channel ,我们把

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.youtube.com/user/channel"))

但是如何搜索特定视频(常量字符串)呢?感谢您的帮助。

最佳答案

试试这个 Intent For Search on Youtube :

 Intent intent = new Intent(Intent.ACTION_SEARCH);
intent.setPackage("com.google.android.youtube");
intent.putExtra("query", "Android");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

关于android - 从我的应用程序搜索 Youtube 应用程序中的特定字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9860456/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com