标签: android visibility
我知道这可能是一个简单的问题,但是eclipse不会识别像VISIBLE这样的android常量:
ImageView bin = (ImageView)findViewById(R.id.delete_icon); bin.setVisibility(VISIBLE);
是否有原因?
答案 0 :(得分:4)
尝试
bin.setVisibility(View.VISIBLE);
它需要知道该常量属于哪个类