Make an Android button change background on click through XML

后端 未结 5 1640
春和景丽
春和景丽 2020-11-27 02:59

Is there a way to specify an alternative background image/color for a Button in the XML file that is going to be applied onClick, or do I have to do a But

5条回答
  •  囚心锁ツ
    2020-11-27 03:32

    Try:

    public void onclick(View v){
                ImageView activity= (ImageView) findViewById(R.id.imageview1);
            button1.setImageResource(R.drawable.buttonpressed);}
    

提交回复
热议问题