所以我跟着this tutorial跟着,被困住了。在Eclipse中,我收到一条错误消息,指出“类型UserItemAdapter的getSystemService(String)方法未定义”。知道如何从上下文中获得此信息吗?我有点困惑,我对Context没有做太多事情。
最佳答案
如果您的封闭活动为MyActivity
,请使用MyActivity.this.getSystemService()
。这将访问封闭的活动(它是一个上下文)。
编辑:或getContext().getSystemService
(请参阅http://developer.android.com/reference/android/widget/ArrayAdapter.html#getContext%28%29)
关于java - 未知的getSystemService(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6130233/