gpt4 book ai didi

Android:DialogPreference 中的可点击超链接

转载 作者:行者123 更新时间:2023-11-29 22:30:17 25 4
gpt4 key购买 nike

我想要完成的事情:在 DialogPreference 显示的消息文本中创建一个可点击的超链接。

到目前为止我的解决方案:关注此主题:link ,我完成了在 DialogPreference 中显示的格式化链接,但是这个链接不可点击。

问题:如何使DialogPreference中的超链接可点击。

我的代码:

public class AboutDialog extends DialogPreference {
public AboutDialog(Context oContext, AttributeSet attrs)
{
super(oContext, attrs);
final SpannableString s = new SpannableString(oContext.getText(R.string.about_text));
Linkify.addLinks(s, Linkify.ALL);
this.setDialogMessage(s);
}}

最佳答案

嗯,我不确定,但试试这个:

  • 创建 textView,使用 yourTextVeiw.setText(s) 将字符串 s 设置为文本
  • 为此 textView 设置 onClickListener
  • 现在将此 textView 设置为对话框,尝试使用 addView(textview) 方法。

关于Android:DialogPreference 中的可点击超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4297043/

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