我正在从以下代码中的应用程序打开youtube应用程序。我在检索频道数据(例如是否订阅了用户频道)时遇到问题。
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://www.youtube.com/**YOURCHANNEL**"));
intent.setPackage("com.google.android.youtube");
startActivity(intent);
我很难从onActivityResults中检索数据。我不确定如何获取订阅频道的数据和其他详细信息。
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == Code)
{
}
}