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 未解决 [重复]的主要内容,如果未能解决你的问题,请参考以下文章

警报服务未取消

确保未定义属性时 es6 find 不会中断 [重复]

致命错误:未捕获的错误:调用成员函数 find() PHP simple_html_dom_parser [重复]

无法解析片段中的 findViewById [重复]

重复执行时未处理的承诺拒绝

NullPointerException 和 findViewById() [重复]