我有一个ImageButton
,当我点击他时,我想将背景图像传递给其他ImageButton
。
我有View v
的{{1}},ImageButton
是下一个imgB6
。我尝试了这个,但它给出了一个错误:
ImageButton
错误为findViewById(R.id.imgB6).setBackgroundResource(v.getBackground());
v.getBackgound()
不是v
,错误在于获取null
Background
我只想v
Background
v
,我该怎么做?