从2个imagebutton中用onfocuschangeListener来显示选择是哪张图片
时间: 2023-12-10 19:38:28 浏览: 66
你可以在onFocusChange方法中,通过判断获得焦点的ImageButton的id来确定显示哪张图片。以下是示例代码:
```
ImageButton imageButton1 = findViewById(R.id.imageButton1);
ImageButton imageButton2 = findViewById(R.id.imageButton2);
imageButton1.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
// 显示第一张图片
imageView.setImageResource(R.drawable.image1);
}
}
});
imageButton2.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
// 显示第二张图片
imageView.setImageResource(R.drawable.image2);
}
}
});
```
其中,`R.drawable.image1`和`R.drawable.image2`分别表示第一张和第二张图片的资源id,imageView是用来显示图片的ImageView对象。
阅读全文