android Button动态修改背景图

Laughing
2020-12-06 / 0 评论 / 2,182 阅读 / 搜一下 / 正在检测是否收录...
温馨提示:
本文最后更新于2020年12月06日,已超过1580天没有更新,若内容或图片失效,请留言反馈。

我们在布局文件中,设置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);
1

评论 (0)

取消
  1. 头像
    Laughing 作者
    Android · QQ Browser

    再次强调,垃圾评论不会通过

    回复