activity中设置button的图片

来源:互联网 发布:如何清除java缓存 编辑:程序博客网 时间:2024/05/14 20:16

有时候直接设置background图片会变形

private Button btn;btn= (Button)findViewById(R.id.btn);Drawable drawable =ContextCompat.getDrawable(this,R.mipmap.test);drawable.setBounds(0, 0,drawable.getMinimumWidth() ,drawable.getMinimumHeight());  //此为必须写的btn.setCompoundDrawables(drawable, null, null, null);
阅读全文
0 0
原创粉丝点击