如何使复选框文本中的单词成为链接

时间:2012-01-27 09:23:17

标签: android android-widget

我的应用程序中有CheckBox,文字描述有四个单词,我需要将最后两个单词作为链接,并在单击最后两个单词时打开一些URL。这该怎么做 ?

2 个答案:

答案 0 :(得分:2)

checkbox.setMovementMethod(LinkMovementMethod.getInstance());

#! /usr/bin/env python3

pattern='some text'
f = open('input.txt', 'r')
g = open('output.txt', 'w')
l=f.readlines()
f.close()
for ind in range(len(l)):
    if pattern in l[ind]:
        l[ind+1]='#' + l[ind+1]
for field in l:
    g.write(field)
g.close()
print('Done')

答案 1 :(得分:0)

你好,我不知道任何其他方式,但我有一个技巧使用按钮,并设置最后两个单词作为按钮的文本和点击监听器设置URL并打开它。