findViewById 未解决 [重复]
Posted
技术标签:
【中文标题】findViewById 未解决 [重复]【英文标题】:findViewById not resolved [duplicate] 【发布时间】:2016-12-06 15:35:18 【问题描述】:我在片段中有这段代码,但它说 cannot resolve method findViewById
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
View fragmentLayout = inflater.inflate(R.layout.fragment_note_detail, container, false);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View view)
);
【问题讨论】:
需要给根视图:fragmentLayout.findViewById(..); 使用 fragmentLayout.findViewById(); 【参考方案1】:应该是:
FloatingActionButton fab = (FloatingActionButton)fragmentLayout.findViewById(R.id.fab);
【讨论】:
以上是关于findViewById 未解决 [重复]的主要内容,如果未能解决你的问题,请参考以下文章