android 的activity文件中,
img1 = (ImageView)findViewById(R.id.img1);
如何判断img1 是否有值 或有此控件,在线等 thanks
------解决方案--------------------
if(img1!=null){
//有
}else{
//没有
}
------解决方案--------------------
//先判断有没有该控件
if(findViewById(R.id.img1)!=null){
img1 = (ImageView)findViewById(R.id.img1);
}
//img1 是否有值
if(img1!=null)
{
}