AsyncTask onPostExecute上的NullPointerException

时间:2012-05-27 13:58:32

标签: android multithreading progress-bar android-asynctask

所以我正在尝试编写AsyncTask,其他UI函数似乎可以正常工作onPostExecute,例如充气和添加布局/视图,但当我尝试更改a的可见性时进度条,我得到一个空指针异常。

我没有直接使用onPostExecute,而是使用addObserver / callback组合,该函数包含:

ProgressBar featuredLoading = (ProgressBar)featuredLayout.findViewById(R.id.featuredLoading);
featuredLoading.setVisibility(View.GONE);

有什么想法吗?

编辑:似乎没有与异步任务相关联,在asynctask执行之前将其移到外部(onCreateView)仍然会崩溃程序...我如何才能允许更改LinearLayout属性但不是进度?

0 个答案:

没有答案