0
ユーザーがクリックしたときにイメージを変更するImageButtonを作成するのに3時間かかりましたが、それは不可能です。前もって感謝します!ユーザーがボタンをクリックしたときにImageButtonのイメージを変更する方法
メインCLAS
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageButton dado_btn = (ImageButton) findViewById (R.id.dado_button);
replace = R.drawable.face_1;
dado_btn.setBackgroundResource(replace);
}
public void OnClickTirada (View v){
//this doesn't work at all
dado_btn.setImageDrawable(getResources().getDrawable(R.drawable.face_1));
}
これは私のために働いた、ありがとう! 私は前に尋ねるべきです!ハハ – Rapinado