【问题标题】:How can I add an hyperlink in status bar notification in android如何在android的状态栏通知中添加超链接
【发布时间】:2011-12-20 09:41:04
【问题描述】:

我在状态栏通知中有一些 html 文本,它在状态栏文本中正确显示(带有格式)。我还有一个文本链接,单击时应打开该 URL。我该怎么做?

状态栏通知的内容实际上是来自某些网络服务的响应(html文本)。

【问题讨论】:

    标签: android notifications statusbar


    【解决方案1】:

    Android 不允许在没有点击反应的情况下发出通知。所以你可以这样做:

    Notification.contentIntent = PendingIntent.getActivity(context, 0, 
        new Intent(Intent.ACTION_VIEW, Uri.parse(YOUR_URL_HERE)),0);
    

    我认为只在文本上做链接不是最好的主意,因为很难用手指点击 i。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-06-17
      相关资源
      最近更新 更多