如果我像这样向它添加图像,如何显示 ImageButton 被按下:
Drawable testPic = getResources().getDrawable(R.drawable.test_pic);
button.setImageDrawable( testPic );
并制作透明背景,以便只有图像:
button.setBackgroundColor(Color.TRANSPARENT);
所以当我按下图像按钮时,我没有看到它被按下。我希望该图像在按下时会突出显示或其他内容。
此外,我的每个按钮都是由代码动态创建的,我不知道图像是什么以及有多少按钮。
那么有什么想法吗?
谢谢。