点击按钮,图片切换

private ImageView img1,img2;
private Button shift;
 shift.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                //Bitmap (图片类,处理它就是这个图片)   切换图片(左右)
                BitmapDrawable img1_bd=( BitmapDrawable) img1.getDrawable();
                Bitmap img1_pan=img1_bd.getBitmap();//获取bidmap对象,强制转换得到

                BitmapDrawable img2_bd=( BitmapDrawable) img2.getDrawable();
                Bitmap img2_pan=img2_bd.getBitmap();

                //setImageBitmap 设置图片
                img1.setImageBitmap(img1_pan);
                img2.setImageBitmap(img2_pan);
            }
        });

在这里插入图片描述

你可能感兴趣的:(android)