我定义了以下TextView:
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/txtCredits"
android:autoLink="web" android:id="@+id/infoTxtCredits"
android:layout_centerInParent="true"
android:linksClickable="true"></TextView>
其中@string/txtCredits
是包含<a href="some site">Link text</a>
的字符串资源。
Android正在突出显示TextView中的链接,但它们不响应点击。有人能告诉我我做错了什么吗?我是否必须在我的活动中为TextView设置onClickListener,以实现这么简单的事情?
看起来它与我定义字符串资源的方式有关。 这不起作用:
<string name="txtCredits"><a href="http://www.google.com">Google</a></string>
但这样做:
<string name="txtCredits">www.google.com</string>
这是一个无赖,因为我宁愿显示文本链接而不是显示完整的URL。
答案 0 :(得分:1164)
埋藏在API演示中,我找到了解决问题的方法:
Link.java:
// text2 has links specified by putting <a> tags in the string
// resource. By default these links will appear but not
// respond to user input. To make them active, you need to
// call setMovementMethod() on the TextView object.
TextView t2 = (TextView) findViewById(R.id.text2);
t2.setMovementMethod(LinkMovementMethod.getInstance());
我删除了TextView上的大多数属性以匹配演示中的属性。
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/txtCredits"/>
解决了它。很难发现并修复。
重要:如果您致电autoLink="web"
,请不要忘记删除setMovementMethod()
。
答案 1 :(得分:499)
我只使用android:autoLink="web"
,它运行正常。单击该链接可打开浏览器并显示正确的页面。
我能猜到的一件事是其他一些观点在链接之上。透明的东西填充整个父母,但不显示链接上方的任何内容。在这种情况下,单击将转到此视图而不是链接。
答案 2 :(得分:330)
花了一些时间,我发现:
android:autoLink="web"
有效。以下内容将以蓝色突出显示并可单击:
- 一些文字
<a href="http://www.google.com">http://www.google.com</a>
- 一些文字
http://www.google.com
view.setMovementMethod(LinkMovementMethod.getInstance());
将使用以下内容(将突出显示并可点击):
- 一些文字
<a href="http://www.google.com">http://www.google.com</a>
- 一些文字
http://www.google.com
- 一些文字
<a href="http://www.google.com">Go to Google</a>
请注意,第三个选项有一个超链接,但链接的描述(标签之间的部分)本身不是链接。 android:autoLink="web"
不使用此类链接。
android:autoLink="web"
如果在XML中设置将覆盖view.setMovementMethod(LinkMovementMethod.getInstance());
(即;第三类链接将突出显示,但不可点击)。故事的寓意是在代码中使用view.setMovementMethod(LinkMovementMethod.getInstance());
,如果您希望所有链接都可以点击,请确保您的XML布局中没有android:autoLink="web"
答案 3 :(得分:92)
以上解决方案对我不起作用,但以下做了(而且看起来有点清洁) 首先,在字符串资源中,使用HTML实体编码定义标记打开的V形符号,即:
<a href="http://www.google.com">Google</a>
和NOT:
<a href="http://www.google.com">Google</a>
通常,像这样编码字符串中的所有V形符号。顺便说一句,该链接必须以http://
然后(按照建议here)在TextView上设置此选项:
android:linksClickable="true"
最后,在代码中,执行:
((TextView) findViewById(R.id.your_text_view)).setMovementMethod(LinkMovementMethod.getInstance());
((TextView) findViewById(R.id.your_text_view)).setText(Html.fromHtml(getResources().getString(R.string.string_with_links)));
就是这样,不需要正则表达式或其他手动黑客攻击。
答案 4 :(得分:61)
答案 5 :(得分:60)
如果您想添加类似HTML的链接,您只需要:
添加类似HTML的资源字符串:
<string name="link"><a href="https://www.google.pl/">Google</a></string>
将视图添加到布局中,完全没有特定于链接的配置:
<TextView
android:id="@+id/link"
android:text="@string/link" />`
以编程方式将适当的MovementMethod添加到TextView:
mLink = (TextView) findViewById(R.id.link);
if (mLink != null) {
mLink.setMovementMethod(LinkMovementMethod.getInstance());
}
就是这样!是的,像“autoLink”和“linksClickable”这样的选项只在显式链接上工作(不包含在html标签中)对我来说也是非常误导......
答案 6 :(得分:45)
我已将此行添加到TextView
:android:autoLink="web"
以下是布局文件中的使用示例。
layout.xml
示例
<TextView
android:id="@+id/txtLostpassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:autoLink="email"
android:gravity="center"
android:padding="20px"
android:text="@string/lostpassword"
android:textAppearance="?android:attr/textAppearanceSmall" />
<TextView
android:id="@+id/txtDefaultpassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:autoLink="web"
android:gravity="center"
android:padding="20px"
android:text="@string/defaultpassword"
android:textAppearance="?android:attr/textAppearanceSmall" />
string.xml
<string name="lostpassword">If you lost your password please contact <a href="mailto:support@cleverfinger.com.au?Subject=Lost%20Password" target="_top">support@cleverfinger.com.au</a></string>
<string name="defaultpassword">User Guide <a href="http://www.cleverfinger.com.au/user-guide/">http://www.cleverfinger.com.au/user-guide/</a></string>
答案 7 :(得分:25)
我希望这会对您有所帮助;
String value = "<html>Visit my blog <a href=\"http://www.maxartists.com\">mysite</a> View <a href=\"sherif-activity://myactivity?author=sherif&nick=king\">myactivity</a> callback</html>";
TextView text = (TextView) findViewById(R.id.text);
text.setText(Html.fromHtml(value));
text.setMovementMethod(LinkMovementMethod.getInstance());
答案 8 :(得分:24)
只需要在xml
的文本视图中添加它<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:autoLink="web"/>
答案 9 :(得分:19)
理查德,下次,您应该在布局XML的TextView下添加此代码。
android:autoLink="all"
这应该是这样的。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/txtCredits"
android:id="@+id/infoTxtCredits"
android:autoLink="all"
android:linksClickable="true">
</TextView>
您无需使用此代码(t2.setMovementMethod(LinkMovementMethod.getInstance());
)即可点击链接。
此外,这是事实:只要您设置 autoLink 和 linksClickable ,请不要忘记在 String.xml 文件,以便可点击链接起作用。
<string name="txtCredits"><a href="http://www.google.com">Google</a></string>
答案 10 :(得分:17)
答案 11 :(得分:15)
使用linkify: Linkify 获取一段文字和正则表达式,并将文本中的所有正则表达式匹配转换为可点击的链接
TextView textView = (TextView) findViewById(R.id.textView);
textView.setText("http://www.domain.com");
Linkify.addLinks(textView, Linkify.WEB_URLS);
别忘了
import android.widget.TextView;
答案 12 :(得分:14)
这是非常一行的android代码,无论什么是字符串和什么是数据,都可以从textView中选择手机和网址。您不需要为此使用任何HTML标记。
TextView textView = (TextView)findViewById(R.id.textView1);
textView.setText("some url is www.google.com phone 7504567890 another url lkgndflg.com ");
// Makes the textView's Phone and URL (hyperlink) select and go.
Linkify.addLinks(textView, Linkify.WEB_URLS | Linkify.PHONE_NUMBERS);
答案 13 :(得分:14)
以下内容适用于在Android应用中寻找文字和超链接组合的任何人。
在string.xml
:
<string name="applink">Looking for the regular Zesteve App?
<a href="https://play.google.com/store/apps/details?id=zesteve.com.myapplication">Get it here</a>
</string>
现在,您可以在任何给定的string
中使用此View
,如下所示:
<TextView
android:id="@+id/getapp"
android:layout_width="match_parent"
android:layout_height="50dp"
android:gravity="center"
android:textColor="@color/main_color_grey_600"
android:textSize="15sp"
android:text="@string/applink"/>
现在,在您的活动或片段中,执行以下操作:
TextView getapp =(TextView) findViewById(R.id.getapp);
getapp.setMovementMethod(LinkMovementMethod.getInstance());
到目前为止,您不需要使用此方法设置android:autoLink="web"
或android:linksClickable="true"
。
我希望你会发现这有用。
答案 14 :(得分:12)
我注意到使用android:autoLink="web"
因此
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:autoLink="web"/>
对网址运行正常,但由于我有一个我想要链接的电子邮件地址和电话号码,我最终使用了这一行android:autoLink="all"
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:autoLink="all"/>
它就像一个魅力。
答案 15 :(得分:11)
在正确格式化的setAutoLinkMask(Linkify.ALL)
链接上使用setMovementMethod(LinkMovementMethod.getInstance())
和Html.fromHTML()
时,请确保不使用HTML
(例如<a href="http://www.google.com/">Google</a>
})。
答案 16 :(得分:9)
你只需要这个:
android:autoLink="web"
将此行插入TextView,可以参考网页进行点击。 URL地址设置为此TextView的文本。
示例:
<TextView
android:id="@+id/textViewWikiURL"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textStyle="bold"
android:text="http://www.wikipedia.org/"
android:autoLink="web" />
答案 17 :(得分:8)
使用此...
TextView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent in=new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.twitter.com/"));
startActivity(in);
}
});
并在清单文件中添加权限
<uses-permission android:name="android.permission.INTERNET"/>
答案 18 :(得分:8)
接受的答案是正确的,但这意味着电话号码,地图,电子邮件地址和常规链接,例如没有href标签的http://google.com
不会被点击,因为您无法在xml中自动链接。
我找到的唯一可以点击的完整解决方案如下:
Spanned text = Html.fromHtml(myString);
URLSpan[] currentSpans = text.getSpans(0, text.length(), URLSpan.class);
SpannableString buffer = new SpannableString(text);
Linkify.addLinks(buffer, Linkify.ALL);
for (URLSpan span : currentSpans) {
int end = text.getSpanEnd(span);
int start = text.getSpanStart(span);
buffer.setSpan(span, start, end, 0);
}
textView.setText(buffer);
textView.setMovementMethod(LinkMovementMethod.getInstance());
TextView不应该有android:autolink
。也不需要android:linksClickable="true"
;这是默认的。
答案 19 :(得分:7)
这就是我在TextView中解决可点击和可见链接的方式(按代码)
private void setAsLink(TextView view, String url){
Pattern pattern = Pattern.compile(url);
Linkify.addLinks(view, pattern, "http://");
view.setText(Html.fromHtml("<a href='http://"+url+"'>http://"+url+"</a>"));
}
答案 20 :(得分:6)
使用以下代码:
String html = "<a href=\"http://yourdomain.com\">Your Domain Name</a>"
TextView textview = (TextView) findViewById(R.id.your_textview_id);
textview.setMovementMethod(LinkMovementMethod.getInstance());
textview.setText(Html.fromHtml(html));
答案 21 :(得分:5)
您遇到问题的原因是它只会尝试匹配“裸”地址。诸如“www.google.com”或“http://www.google.com”之类的内容。
通过Html.fromHtml()运行文字应该可以解决问题。你必须以编程方式进行,但它确实有效。
答案 22 :(得分:5)
[Tested in Pre-lollipop as well as in Lollipop and above]
您可以从后端或资源文件中获取HTML字符串。
如果您将文本作为资源字符串,请务必添加CDATA
标记:
<string name="your_text">![CDATA[...<a href="your_link">Link Title</a> ...]]</string>
然后在代码中,您需要获取字符串并将其指定为HTML并设置链接移动方法:
String yourText = getString(R.string.your_text);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
textView.setText(Html.fromHtml(yourText, Html.FROM_HTML_MODE_COMPACT));
} else {
textView.setText(Html.fromHtml(yourText));
}
try {
subtext.setMovementMethod(LinkMovementMethod.getInstance());
} catch (Exception e) {
//This code seems to crash in some Samsung devices.
//You can handle this edge case base on your needs.
}
答案 23 :(得分:4)
将CDATA添加到字符串资源
的strings.xml
<string name="txtCredits"><![CDATA[<a href=\"http://www.google.com\">Google</a>]]></string>
答案 24 :(得分:4)
Autolink手机对我不起作用。以下工作就像一个魅力,
TextView tv = (TextView) findViewById(R.id.emergencynos);
String html2="<br><br>Fire - <b><a href=tel:997>997</a> </b></br></br>";
tv.append(Html.fromHtml(html2));
tv.setMovementMethod(LinkMovementMethod.getInstance());
答案 25 :(得分:3)
我使用自动链接“自动下划线”文本,但只是做了一个“onClick”来管理它。 (我自己遇到了这个问题)
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:textSize="18dp"
android:autoLink="all"
android:text="@string/twitter"
android:onClick="twitter"/>
public void twitter (View view)
{
try
{
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://twitter.com/onaclovtech"));
startActivity(browserIntent);
}
finally
{
}
}
不需要任何权限,因为您将意图传递给管理这些资源的应用程序(I.E.浏览器)。
这对我有用。祝你好运。
答案 26 :(得分:3)
如果使用基于XML的TextView,根据您的要求,您只需做两件事:
识别字符串中的链接,例如“这是我的网页”。 您可以将其添加到xml或代码中。
在包含TextView的xml中,添加以下内容:
android:linksClickable="true"
android:autoLink="web"
答案 27 :(得分:3)
不知道是否值得添加另一个答案,但以防万一......
我不得不在几个地方追捕这个,但最终得到了这个版本的代码。
的strings.xml:
<string name="name1"><a href="http://www.google.com">link text1</a></string>
<string name="name2"><a href="http://www.google.com">link text2</a></string>
myactivity.xml:
<TextView
android:id="@+id/textview1"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginTop="5dp" />
<TextView
android:id="@+id/textview2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginTop="5dp" />
myactivty.java(在onCreate()中):
TextView tv1 = (TextView)findViewById(R.id.textview1);
TextView tv2 = (TextView)findViewById(R.id.textview2);
tv1.setText(Html.fromHtml(getResources().getString(R.string.name1)));
tv2.setText(Html.fromHtml(getResources().getString(R.string.name2)));
tv1.setMovementMethod(LinkMovementMethod.getInstance());
tv2.setMovementMethod(LinkMovementMethod.getInstance());
这将创建两个可点击的超链接,其中包含文字link text1
和link text2
,可将用户重定向到Google。
答案 28 :(得分:2)
tv_customer_care_no.setLinkTextColor(getResources().getColor(R.color.blue));
tv_customer_care_no.setText("For us to reach out to you, please fill the details below or contact our customer care at 18004190899 or visit our website http://www.dupont.co.in/corporate-links/contact-dupont.html ");
Linkify.addLinks(tv_customer_care_no, Linkify.WEB_URLS | Linkify.PHONE_NUMBERS);
Linkify.addLinks(tv_customer_care_no, Linkify.ALL );
答案 29 :(得分:1)
浪费了太多时间来弄清楚你必须使用getText(R.string.whatever)而不是getString(R.string.whatever)......
无论如何,这是我如何工作的。在同一文本视图中也有多个超链接。
TextView termsTextView = (TextView) getActivity().findViewById(R.id.termsTextView);
termsTextView.append("By registering your account, you agree to our ");
termsTextView.append(getText(R.string.terms_of_service));
termsTextView.append(", ");
termsTextView.append(getText(R.string.fees));
termsTextView.append(", and the ");
termsTextView.append(getText(R.string.stripe_connected_account_agreement));
termsTextView.setMovementMethod(LinkMovementMethod.getInstance());
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/termsTextView"/>
字符串示例
<string name="stripe_connected_account_agreement"><a href="https://stripe.com/connect/account-terms">Stripe Connected Account Agreement</a></string>
答案 30 :(得分:1)
我的代码是这样的:
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/link"
android:text="@string/forgot"
android:layout_marginTop="16dp"
android:gravity="center"
android:linksClickable="true"/>
我的Java代码是这样的:
/*TextView action*/
TextView textView = (TextView) findViewById(R.id.link);
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
startActivity(new Intent(LoginActivity.this,forgot.class));
}
});
这只是指向另一个活动的链接。但该链接是可点击的,并且运作顺畅。在Android Studio 1.5(预览版)中测试
答案 31 :(得分:1)
在SpannableString上创建扩展方法:
private fun SpannableString.setLinkSpan(text: String, url: String) {
val textIndex = this.indexOf(text)
setSpan(
object : ClickableSpan() {
override fun onClick(widget: View) {
Intent(Intent.ACTION_VIEW).apply { data = Uri.parse(url) }.also { startActivity(it) }
}
},
textIndex,
textIndex + text.length,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE
)
}
使用它使TextView中的字符串可点击:
myTextView.apply {
movementMethod = LinkMovementMethod.getInstance()
val googleUrl = "http://www.google.com"
val microsoftUrl = "http://www.microsoft.com"
val google = "Google"
val microsoft = "Microsoft"
val message = SpannableString("$google & $microsoft").apply {
setLinkSpan(google, googleUrl)
setLinkSpan(microsoft, microsoftUrl)
}
text = message
}
享受!
答案 32 :(得分:1)
这个问题很老,但是没有一个回答很明显。此代码摘自我的一个业余项目:
package com.stackoverflow.java.android;
import android.content.Context;
import android.text.method.LinkMovementMethod;
import android.text.method.MovementMethod;
import android.util.AttributeSet;
import androidx.annotation.Nullable;
import androidx.appcompat.widget.AppCompatTextView;
public class HyperlinkTextView extends AppCompatTextView {
public HyperlinkTextView(Context context) {
super(context);
}
public HyperlinkTextView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}
public HyperlinkTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
/**
* Set default movement method to {@link LinkMovementMethod}
* @return Link movement method as the default movement method
*/
@Override
protected MovementMethod getDefaultMovementMethod() {
return LinkMovementMethod.getInstance();
}
}
现在,只需在布局文件中使用com.stackoverflow.java.android.HyperlinkTextView
而不是TextView
就可以解决您的问题。
答案 33 :(得分:0)
由于databinding已经发布,我想分享我的解决方案,用于支持带有可点击链接的支持html标签的TextViews。
为了避免使用From.html
检索每个textview并为其提供html支持,我们扩展TextView并将逻辑放在setText()
public class HtmlTextView extends TextView {
public HtmlTextView(Context context) {
super(context);
}
public HtmlTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public HtmlTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public void setText(CharSequence text, BufferType type) {
super.setText(Html.fromHtml(text.toString()), type);
this.setMovementMethod(LinkMovementMethod.getInstance());
}
}
我made a gist也显示了使用此功能的示例实体和视图。
答案 34 :(得分:0)
对于那些在从 XML 内容中读取字符串并动态分配字符串有问题的人。
如果您使用来自 strings.xml 资源的文本,HTML 标签似乎被剥离。
因此您必须在 strings.xml 文件中使用 <![CDATA[**your string with click links**]]>
以使用 Html.fromHtml(string) 将其转换为 HTML。