0

私は2つの画像ボタンを持っています。imagebutton1 には背景として画像があり、imagebutton2 には空白の背景があります。imagebutton1 をクリックすると、imagebutton2 が imagebutton1 の背景画像を取得し、imagebutton2 をもう一度クリックすると、背景が再び空白になります。ゲーム「4pic 1 word」のコンセプトと同じように、皆さんがそれに精通している場合。ありがとう。

4

3 に答える 3

1
public Bitmap getBitmapFromImageView(ImageView imageView){ 
    Drawable drawable = imageView.getDrawable();
    Bitmap bitmap = null;
    if (drawable instanceof BitmapDrawable) {
        BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable;
        bitmap = bitmapDrawable.getBitmap();       
    }
    return bitmap;
}
于 2013-04-16T05:39:42.927 に答える
0

ボタンのクリックでこれを使用できます

                 public void firstbutton(){
                ImageView ImageButton2 = (ImageButton)findViewById(R.id.imageButton2);
               ImageButton2 .setImageResource(R.drawable.image1);
                     }

             public void Secondbutton()
             ImageView ImageButton1 = (ImageButton)findViewById(R.id.imageButton1);
             ImageButton2 .setImageResource(R.drawable.image2);
                         }


  call this method on button click where you want cheers........
于 2013-04-16T05:42:47.447 に答える