这个问题已经有了答案:Call to getLayoutInflater() in places not in activity6答嗨,我在和安卓一起工作。我曾试图将布局扩展到片段中,但它在代码“method getLayoutFlater()未为类定义”中显示错误。如何访问片段中的布局????请帮帮我我是Android新手。谢谢这是我的密码 View header = (View)getLayoutInflater().inflate(R.layout.listview_header_row, null); listView1.addHeaderView(header); 最佳答案 getLayoutInflater()是Context的一种方法使用…在getActivity().getLayoutInflater()中调用回拨后有效 10-04 10:34