Android Listview - 使用youtube链接的可点击项目?

时间:2014-11-21 15:45:12

标签: android listview youtube

我已经创建了一个listview,它有40个歌曲名称和一个标准适配器。您是否知道如何通过链接点击项目?

编辑:谢谢大家:)

2 个答案:

答案 0 :(得分:0)

如果订单/项是静态的,您可以将链接存储为数组中的字符串,然后访问该数组以获取相应的字符串并使用Intent导航到它。

以下是网址意图的示例

String url = "http://www.youtube.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

答案 1 :(得分:0)

如果我理解正确,你应该使用onItemClickListener!

http://developer.android.com/reference/android/widget/AdapterView.OnItemClickListener.html

然后在其中使用此代码!

String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);