【发布时间】:2014-06-19 22:30:47
【问题描述】:
我遇到了一个异常:
java.lang.IllegalStateException: System services not available to Activities before onCreate()
在 onResume() 中重新初始化 layoutInflater 时:
layoutInflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
我正在尝试更新视图翻转器的内容。 谁能建议我对此进行更正以解决异常。
【问题讨论】:
-
您在
onCreate()之前调用了getSystemService(),但您发布的代码没有显示在哪里。查看异常堆栈跟踪以了解您在哪里调用它。
标签: android viewflipper