以下是logcat中的主要内容
by log Tag:AndroidRuntimebyLog Message:java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.demoone/com.example.demoone.StudentCenter}: android.util.AndroidRuntimeException: requestFeature() must be called before adding contentby PID:6098以下是源码:
@Override public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.student_center); requestWindowFeature(Window.FEATURE_NO_TITLE); }直译最后一句:requestFeature()必须在添加content之前先被调用。
看回源代码,还真的是这样,调换位置就好了,先设置标题,再加载布局文件。
新闻热点
疑难解答