为了显示一个textview,在mainactivity中加入了下面代码
TextView tv =(TextView)findViewById(R.id.tv);
tv.setText(Html.fromHtml("aaaa"));
在fragment_main中加入下面代码
<TextView
android:id="@+id/tv"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world"
/>
编译没问题,运行的时候还没打开就中断了,,这是为什么呀,,
------解决方案--------------------
tv.setText(Html.fromHtml("aaaa"));这句话有误吧,你把这句话注释了看看,如果有误我再告诉你怎么解决