ImageButton imageButton = findViewById(R.id.imageButton); Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.my_image); imageButton.setImageBitmap(bitmap);
ImageButton imageButton = findViewById(R.id.imageButton); String url = "https://example.com/my_image.png"; URL myURL = new URL(url); Bitmap bmp = BitmapFactory.decodeStream(myURL.openConnection().getInputStream()); imageButton.setImageBitmap(bmp);The package library for android.widget.ImageButton is 'android.widget'.