android – 方法findViewById(int)未定义类型

前端之家收集整理的这篇文章主要介绍了android – 方法findViewById(int)未定义类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我收到了错误

The method findViewById(int) is undefined for the type PM_section

在尝试实现我的可扩展ListView时.我确信这是一个常见的错误,但我找不到解决方案.我试图学习碎片等等,自从我开始以来,它一直是一场艰苦的战斗.我做了很多搜索,发现了很多结果,在我的情况下似乎没有帮助我.

如果有人能给我任何见解,或指出我正确的方向,我将非常感激.

我的小测试课程如下

public class PM_section extends Fragment {
//  CustomExpListView custExpListView;
    @Override
    public View onCreateView(LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        View V = inflater.inflate(R.layout.fragment_pm_section_test,container,false);

        CustomExpListView custExpListView = (CustomExpListView)
                this.findViewById(R.id.ExpandableListView01);
        return V;   
    }// end on create
}

CustomExpListView类几乎是从Android示例项目中复制粘贴的,并且很开心且没有问题.

谢谢你帮助我.

解决方法

如果R.id.ExpandableListView01是R.layout.fragment_pm_section_test的一部分,则将其替换为V.
CustomExpListView custExpListView = (CustomExpListView)
                V.findViewById(R.id.ExpandableListView01);

片段没有findViewById()方法.您需要使用膨胀的View来获取布局中的所有内容.

还要考虑使用Java命名约定.变量以小写字母开头,而类以大写字母开头.

原文链接:https://www.f2er.com/android/314296.html

猜你在找的Android相关文章