安卓开发 ImageButton设置背景图

 ImageButton imageButton;
Drawable drawable = mContext.getResources().getDrawable(R.mipmap.login_invisible);
imageButton.setBackground(drawable);

按钮设置字体颜色

 btn.setTextColor(getResources().getColor(R.color.text_blue));

你可能感兴趣的:(安卓开发 ImageButton设置背景图)