我是android的新手,我从两个不同的按钮上的drawable文件夹中获取两个不同的图像,点击不同的imageview。第二个图像无法在按钮单击时显示在第二个图像视图中。
enter code here
tool1=(Button)findViewById(R.id.tool11);
tool2=(Button)findViewById(R.id.tool12);
tool1.setOnClickListener(this);
tool2.setOnClickListener(this);
case R.id.tool11://this is my button onclicklistener
d= getResources().getDrawable(R.drawable.happy);//drawable
myImage1 = (ImageView) findViewById(R.id.imageView2);
myImage1 .setImageResource(R.drawable.happy);
myBitmap1 = Bitmap Factory.decodeResource(getApplicationContext().getResources(),
R.drawable.happy);
case R.id.tool12:
d1= getResources().getDrawable(R.drawable.cool);
myImage2 = (ImageView) findViewById(R.id.imageView3);
myImage2.setImageResource(R.drawable.cool);
myBitmap2 = BitmapFactory.decodeResource(getApplicationContext().getResources(),
R.drawable.cool);
Toast.makeText(getApplicationContext(), "Image Selected", Toast.LENGTH_SHORT).show();
请回答我的问题
答案 0 :(得分:1)
在每个选择案例的末尾添加break;
。
答案 1 :(得分:0)
,因为您使用了开关案例块
case R.id.tool1:
// functionality
Break;
case R.id.tool2:
//functionality
Break;
使用Break in case。