我从Android Studio compiler
Error:(160, 50) error: cannot find symbol method getWindow()
这是我的代码。
ProgressBar spinner;
然后我的代码中的其他地方:
spinner = new ProgressBar(model);
spinner.setIndeterminate(true);
spinner.setVisibility(View.INVISIBLE);
homeView.addView(spinner);
WindowManager.LayoutParams wmlp = spinner.getWindow().getAttributes();
getWindow()
是有效的通话。这是activity
。有什么想法吗?
答案 0 :(得分:3)
如果您在Fragment
,请致电:
getActivity().getWindow()
如果您在Activity
,请致电:
getWindow()