xml で:
<ImageButton
android:id="@+id/b_checkEv"
android:src="@drawable/img_huella"
... />
活動中:
ImageButton ib = (ImageButton) findViewById(R.id.b_checkEv);
Drawable dr = ib.getDrawble();
ib.setDrawable() を使用して、コード内の ImageButton のイメージを動的に変更します。どの画像が ImageButton に設定されているかを知るために、Drawable からリソース ID を取得する方法を知っている人はいますか?
ありがとう!