android 给button 设置做图标注意

来源:互联网 发布:seo自媒体 编辑:程序博客网 时间:2024/06/18 16:01
        Drawable img_focus = mContext.getResources().getDrawable(R.drawable.ic_has_focus);
      // 调用setCompoundDrawables时,必须调用Drawable.setBounds()方法,否则图片不显示      img_focus.setBounds(0, 0, img_focus.getMinimumWidth(), img_focus.getMinimumHeight());
      holder_type2.btn_care.setCompoundDrawables(img_focus, null, null, null); //设置左图标

0 0
原创粉丝点击