findViewById找到的为空问题解决

findViewById找到的为空问题解决

关于Android studio报错Attempt to invoke virtual method ‘void android.widget.Button.setOnClickListener(android.view.View$OnClickListener)’ on a null object
我写了一个自定义的对话框,在查找自定义对话框视图的组件时,使用findviewByID的,系统代码没有任何报错,运行时出现XXX停止运行,后面写了一个trycatch才发现我的按钮是空的没有定位到对话框视图里的按钮。
所以在findViewByById时指明是哪个视图findViewById即可。
所以我的代码就是这样
final Button sign = (Button) dialogView.findViewById(R.id.signin);
dialogView是我一开始定义的视图
View dialogView = View.inflate(MainActivity.this, R.layout.dialoglayout, null);
我要找的button就是dialoglayout.xml当中的button。
然后运行问题解决

你可能感兴趣的:(findViewById找到的为空问题解决)