所以我跟着this tutorial跟着,我被困了。在Eclipse中,我收到一条错误消息,指出“方法getSystemService(String)未定义为UserItemAdapter类型”。知道如何从上下文中获取此信息吗?我有点困惑,我对Contexts做的并不多。
答案 0 :(得分:5)
如果您的封闭活动为MyActivity
,请使用MyActivity.this.getSystemService()
。这将访问封闭的Activity(这是一个Context)。
编辑:或getContext().getSystemService
(请参阅http://developer.android.com/reference/android/widget/ArrayAdapter.html#getContext%28%29)