在控件ID正确的情况下,检查是否在实例化布局文件之后,获取LISTVIEW,
先inflate找layout下布局文件,并实例化后才能获得Listview的ID
demo:
public class FragmentPage extends Fragment { View view = null; @Override @SuppressLint("HandlerLeak") public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { view = inflater.inflate(R.layout.fragment_2, null); // @此处获取使用view.findViewById(list的ID); //最后返回加载后的布局文件 return view; } }
以上就是小编为大家带来的android getActivity.findViewById获取ListView 返回NULL的方法全部内容了,希望大家多多支持~
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索findviewbyid返回null
findviewbyid返回null、findviewbyid null、getelementbyid null、findviewbyid、findviewbyid用法,以便于您获取更多的相关知识。
时间: 2024-12-04 18:30:40