如何在EditText中创建可点击的链接?

时间:2013-08-13 21:29:59

标签: android android-edittext linkify

我在Android上有一个EditText,我希望任何嵌入式网址都可以点击。我使用了Linkify类,它将它们变成蓝色并加下划线。但是,我无法弄清楚如何实际使它们可点击。

谢谢!

4 个答案:

答案 0 :(得分:17)

XML:

 android:linksClickable="true"
 android:autoLink="web|email"

JAVA:

TextView textView = (TextView) findViewById(R.id.textViewId);
textView.setText(Html.fromHtml(html));
textView.setMovementMethod(LinkMovementMethod.getInstance());

答案 1 :(得分:17)

对于编辑文本,我设法通过以下方式获取可点击的链接。 首先,我实现了Custom MovementMethod,描述为here

爪哇

(从xml或上下文创建编辑文本)

editText.setLinksClickable(true);
editText.setAutoLinkMask(Linkify.WEB_URLS);
editText.setMovementMethod(CustomMovementMethod.getInstance());
//If the edit text contains previous text with potential links
Linkify.addLinks(editText, Linkify.WEB_URLS);

然后在用户输入

时管理网址看起来像链接
editText.addTextChangedListener(new TextWatcher() {
        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {

        }

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {


        }

        @Override
        public void afterTextChanged(Editable s) {

                Linkify.addLinks(s, Linkify.WEB_URLS);

        }
    });

答案 2 :(得分:0)

XML:-在您的编辑文本中编写

android:autoLink =“ web” android:inputType =“ textWebEditText”

答案 3 :(得分:0)

希望这会对某人有所帮助

val message: String = String.format(
        getString(R.string.message_content),
        firstNameEditText.text,
        lastNameEditText.text,
        dateTextView.text,
        timeTextView.text
    )

    val gMapURL = getString(R.string.google_map_location)

    // Setup my Spannable with clickable URLs
    val spannable: Spannable = SpannableString(gMapURL)
    Linkify.addLinks(spannable, Linkify.WEB_URLS)

    // Append a zero-width space to the Spannable
    val gText = TextUtils.concat(spannable, "\u200B")

    val finalText = TextUtils.concat(message, gText)
    messageContentEditText.setText(finalText)