我有一个简单的Android活动,其中包含带有链接的图像和文本。但是滚动视图在病房的API 26中不起作用。但是它在API 26级别以下起作用。我已经在API 21、22、23、24、25上对其进行了测试。
如果我删除以下代码
SpannableStringBuilder stringText=new SpannableStringBuilder("Photo by Paul Hudson licensed under CC BY 2.0");
stringText.setSpan(click1,0,5, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
stringText.setSpan(click2,9,21, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
stringText.setSpan(click3,36,45, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
stringText.append(getString(R.string.Lara_Info));
textView.setText(stringText);
textView.setMovementMethod(LinkMovementMethod.getInstance());
然后它可以在每个API级别上运行。请提供帮助。