public View findViewById(int id) {
View v = super.findViewById(id);
if (v != null)
return v;
return mHelper.findViewById(id);
}
问题在于,当我清除缓存后恢复我的应用程序时,v和mHelper为NULL。 我该怎么做才能解决这个问题?
答案 0 :(得分:0)
这是前一段时间,但是你用过这个吗?
View v = (View) getSupportFragmentManager().findFragmentById(your fragment ID here).getView();