如何在不同的单词上单击或点击TextView文本?

时间:2012-03-06 12:55:53

标签: android textview spannable

如何通过单击带有两个不同单词的文本视图来移动到另一个视图。 这是我正在使用的字符串。

By clicking Sign Up, you are indicating that you have read and agree to the 
Term of Use and Privacy Policy.

我想以不同的颜色和可点击的方式制作这两个词(使用条款,隐私政策)。

我知道要为某个单词制作颜色。我想让它可点击。

5 个答案:

答案 0 :(得分:56)

我终于弄明白了如何在TextView中拥有多个可点击的部分。 重要的是他们都拥有自己的ClickableSpan!这是我第一次测试时出错的地方。如果它们具有相同的ClickableSpan实例,则仅记住最后设置的跨度。

我创建了一个字符串,其中所需的可点击区域被“[”和“]”包围。

String sentence = "this is [part 1] and [here another] and [another one]";

这里是设置TextView,setMovementMehthod也是必需的:

textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setText(addClickablePart(sentence), BufferType.SPANNABLE);

我创建了这个函数,它将处理可点击区域的创建:

private SpannableStringBuilder addClickablePart(String str) {
    SpannableStringBuilder ssb = new SpannableStringBuilder(str);

    int idx1 = str.indexOf("[");
    int idx2 = 0;
    while (idx1 != -1) {
        idx2 = str.indexOf("]", idx1) + 1;

        final String clickString = str.substring(idx1, idx2);
        ssb.setSpan(new ClickableSpan() {

            @Override
            public void onClick(View widget) {
                Toast.makeText(getView().getContext(), clickString,
                        Toast.LENGTH_SHORT).show();
            }
        }, idx1, idx2, 0);
        idx1 = str.indexOf("[", idx2);
    }

    return ssb;
}

答案 1 :(得分:14)

基于Boy的回复(感谢您的回复对我有很多帮助),这是我实现它的另一种方式,没有这个'['和']'字符使用内部类来描述可点击的单词:

import java.util.List;

import android.content.Context;
import android.text.SpannableStringBuilder;
import android.text.method.LinkMovementMethod;
import android.text.style.ClickableSpan;
import android.util.AttributeSet;
import android.widget.TextView;

/**
 * Defines a TextView widget where user can click on different words to see different actions
 *
 */
public class ClickableTextView extends TextView {

    public ClickableTextView(Context context) {
        super(context);
    }

    public ClickableTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public ClickableTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public void setTextWithClickableWords(String text, List<ClickableWord> clickableWords) {
        setMovementMethod(LinkMovementMethod.getInstance());
        setText(addClickablePart(text, clickableWords), BufferType.SPANNABLE);
    }

    private SpannableStringBuilder addClickablePart(String str, List<ClickableWord> clickableWords) {
        SpannableStringBuilder ssb = new SpannableStringBuilder(str);

        for (ClickableWord clickableWord : clickableWords) {
            int idx1 = str.indexOf(clickableWord.getWord());
            int idx2 = 0;
            while (idx1 != -1) {
                idx2 = idx1 + clickableWord.getWord().length();
                ssb.setSpan(clickableWord.getClickableSpan(), idx1, idx2, 0);
                idx1 = str.indexOf(clickableWord.getWord(), idx2);
            }
        }

        return ssb;
    }

    public static class ClickableWord {
        private String word;
        private ClickableSpan clickableSpan;

        public ClickableWord(String word, ClickableSpan clickableSpan) {
            this.word = word;
            this.clickableSpan = clickableSpan;
        }

        /**
         * @return the word
         */
        public String getWord() {
            return word;
        }

        /**
         * @return the clickableSpan
         */
        public ClickableSpan getClickableSpan() {
            return clickableSpan;
        }
    }
}

希望这可以帮助某人

编辑:如何更改链接颜色并删除下划线:

创建并使用您自己的ClickableSpan实现,如下所示:

//a version of ClickableSpan without the underline
public static class NoUnderlineClickableSpan extends ClickableSpan {
    private int color = -1;

    public void setColor(int color) {
        this.color = color;
    }

    @Override
    public void updateDrawState(TextPaint ds) {
        ds.setUnderlineText(false);
        if (this.color != -1) {
            ds.setColor(this.color);
        }
    }
}

答案 2 :(得分:7)

在TextView中使用带有链接的HTML比创建多个TextView要简单得多,注意布局,听众等。

在您的活动或片段中:

    TextView mText = (TextView) findViewById(R.id.text_linkified);
    mText.setText(Html.fromHtml("Open <a href='myapp://my-activity'>My Activity</a> or" +
            " <a href='myapp://other-activity'>Other Activity</a>"));
    mText.setMovementMethod(LinkMovementMethod.getInstance());

在清单

    <activity android:name=".MyActivity">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT"/>
            <data android:scheme="myapp" android:host="my-activity"/>
        </intent-filter>
    </activity>
    <activity android:name=".MyOtherActivity">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT"/>
            <data android:scheme="myapp" android:host="other-activity" />
        </intent-filter>
    </activity>

答案 3 :(得分:2)

我推荐这个库:https://github.com/klinker24/Android-TextView-LinkBuilder

非常符合你的要求。

快速概述:

enter image description here

复制表单项目的自述文件:

  • 指定TextView
  • 中特定单词的长短操作
  • 通过在用户触摸时突出显示文本来提供用户反馈 匹配单个字符串或使用正则表达式设置可点击链接到符合该模式的任何文本
  • 更改链接文字的颜色
  • 修改用户触摸时文本突出显示的透明度
  • 设置是否要带下划线的文字

使用此库而不是TextView的自动链接功能的主要优点是,您可以链接任何内容,而不仅仅是网址,电子邮件和电话号码。它还提供颜色定制和触摸反馈。

答案 4 :(得分:0)

在ClickableTextView实现中,如果string重复了一个单词,会发生什么? 例如,假设字符串是&#34;我可以点击,这也是可点击的&#34;然后两个字符串都应该更改为Spannable字符串,但它失败了那个场景,只有一个字符串将被更改为spannable字符串。