我们在布局文件中,设置Button的背景图片时,一般是通过如下方式
<ImageButton
android:id="@+id/buttonListTopMenuSave"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/detail_save"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
/>
如果我们需要动态设置图片,可以通过如下方式
buttonListTopMenuSave = findViewById(R.id.buttonListTopMenuSave);
buttonListTopMenuSave.setBackgroundResource(R.drawable.detail_ok);
buttonListTopMenuSave.setOnClickListener(this);
再次强调,垃圾评论不会通过