Android-SPAN_EXCLUSIVE_EXCLUSIVE跨度不能为零长度
发布于 2021-02-02 22:47:28
我有以下布局(实际上是空的):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/set_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:contentDescription="content desc"
android:orientation="vertical" >
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, I am a TextView" />
</LinearLayout>
Activity类包含以下内容:
public class TestActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test);
}
}
在移动设备上运行此命令时,出现以下错误:
SpannableStringBuilder
SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
无论是否有TextView我都尝试过,但错误仍然存在,对于这样的基本布局,我必须在根本上做错了。
有人对我如何将其加载而没有错误有任何想法吗?
关注者
0
被浏览
267
1 个回答