首页 > 系统 > Android > 正文

android 真机调试遇到的一个低级问题。。

2019-11-09 17:35:54
字体:
来源:转载
供稿:网友

以下是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之前先被调用。

看回源代码,还真的是这样,调换位置就好了,先设置标题,再加载布局文件。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表