【发布时间】:2012-05-18 15:49:35
【问题描述】:
我正在尝试刷新我的自定义 ListViewAdapter;
编辑:
当我单击 Listview 中的一个项目时,它正在调用 GoruntuleActivity 的屏幕并创建 oncreate 方法(我假设它正在创建..),然后我调用 GoruntuleActivity 的一个方法,layputInflater 进入此 Activity。
ListeleActivity.java
lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View item,
int position, long id) {
onClickPosition = position;
final Intent intent = new Intent(ListeleActivity.this,
GoruntuleActivity.class);
startActivity(intent);
goruntuleNesnesi.isSetListRefresh(onClickPosition , issetlist);
}
});
它正在调用GoruntuleActivity.java的方法
public void isSetListRefresh(int onClickPosition, ArrayList<String> issetlist )
{
issetlist.set(onClickPosition, "false");
setRecentOrSeen(issetlist);
ListviewRefresh();
}
public void ListviewRefresh()
{
LayoutInflater mLInflater = LayoutInflater.from(this);
ListViewAdapter adapter = new ListViewAdapter(
getApplicationContext(), getKimdenList(), getKonuList(), getRecentOrSeen() ,
mLInflater);
adapter.Remove();
}
现在它又给了我一个例外..
05-18 16:25:22.073: E/AndroidRuntime(807): FATAL EXCEPTION: main
05-18 16:25:22.073: E/AndroidRuntime(807): java.lang.IllegalStateException: System services not available to Activities before onCreate()
05-18 16:25:22.073: E/AndroidRuntime(807): at android.app.Activity.getSystemService(Activity.java:3526)
05-18 16:25:22.073: E/AndroidRuntime(807): at android.view.LayoutInflater.from(LayoutInflater.java:171)
05-18 16:25:22.073: E/AndroidRuntime(807): at com.mobil.eposta.GoruntuleActivity.ListviewRefresh(GoruntuleActivity.java:160)
05-18 16:25:22.073: E/AndroidRuntime(807): at com.mobil.eposta.GoruntuleActivity.isSetListRefresh(GoruntuleActivity.java:155)
05-18 16:25:22.073: E/AndroidRuntime(807): at com.mobil.eposta.ListeleActivity$1.onItemClick(ListeleActivity.java:137)
05-18 16:25:22.073: E/AndroidRuntime(807): at android.widget.AdapterView.performItemClick(AdapterView.java:284)
05-18 16:25:22.073: E/AndroidRuntime(807): at android.widget.ListView.performItemClick(ListView.java:3382)
05-18 16:25:22.073: E/AndroidRuntime(807): at android.widget.AbsListView$PerformClick.run(AbsListView.java:1696)
05-18 16:25:22.073: E/AndroidRuntime(807): at android.os.Handler.handleCallback(Handler.java:587)
05-18 16:25:22.073: E/AndroidRuntime(807): at android.os.Handler.dispatchMessage(Handler.java:92)
05-18 16:25:22.073: E/AndroidRuntime(807): at android.os.Looper.loop(Looper.java:123)
05-18 16:25:22.073: E/AndroidRuntime(807): at android.app.ActivityThread.main(ActivityThread.java:4627)
05-18 16:25:22.073: E/AndroidRuntime(807): at java.lang.reflect.Method.invokeNative(Native Method)
05-18 16:25:22.073: E/AndroidRuntime(807): at java.lang.reflect.Method.invoke(Method.java:521)
05-18 16:25:22.073: E/AndroidRuntime(807): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
05-18 16:25:22.073: E/AndroidRuntime(807): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
05-18 16:25:22.073: E/AndroidRuntime(807): at dalvik.system.NativeStart.main(Native Method)
【问题讨论】:
-
你尝试过使用 LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER_SERVICE);?
-
我现在用了,还是不行
-
LayoutInflater.from(getApplicationContext()) ?
标签: android nullpointerexception layout-inflater