我的应用中的Imageview

时间:2017-10-25 19:07:47

标签: java android

我希望在代码中满足某些条件时显示图像 我的代码是:

if((times-prt)/1000000 >1000) {
                prt=times;
                pushdata((lightIn > 150 ? 1 : 0));
                // Log.d("Light amount: %02f", lightIn+"getArraydata= "+getArraydata() +"getArraydata()"+matchPattern());
                if(matchPattern()) {
                    ImageView imageView = (ImageView) findViewById(R.id.new_logo);
                    imageView.setImageResource(R.drawable.new_logo);

                    // finish();
                    // System.exit(0);
                }
            }

模式匹配但没有显示图片 求你帮帮我。

1 个答案:

答案 0 :(得分:0)

如果您的图像视图在layout.xml文件中将可见性设置为INVISIBLE或GONE,则还需要调用:

imageView.setVisibility(View.VISIBLE);