gpt4 book ai didi

android - ListView 中的可点击链接

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

ListView 可点击链接问题。

我在 getView() 中使用以下代码在 ListView 中生成可点击的链接。

myTextView.setMovementMethod(LinkMovementMethod.getInstance());
String linkText = "<a href=\"http://www.google.com\">Google</a>";
myTextView.setText(Html.fromHtml(linkText));

这段代码在不在 ListView 中的 TextView 上工作正常,但是当我将它用于 ListView 中的 TextView 时,单击链接会引发以下异常。

AndroidRuntimeException: Calling startActivity() from outside of an Activity
context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?

最佳答案

得到答案 here .我只需要更改构造函数调用

CustomAdapter mAdapter = new CustomAdapter( mContext, itemList);

CustomAdapter mAdapter = new CustomAdapter( this, itemList);

关于android - ListView 中的可点击链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10277474/

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