textview可以在上下左右四个方向添加图片,同时也可以动态改变这些图片;
Drawable可以通过 Drawable drawable =getResources().getDrawable(R.drawable.button_nav_up);得到
但是API提示,setCompoundDrawables() 调用的时候,Drawable对象必须调用setBounds(int left, int top, int right, int bottom)方法
具体如下:
if (mDaynightModeInt % 3 == 0) {
// 自动
mDaynightModeTv.setText("自动");
Drawable drawable = getResources().getDrawable(
R.drawable.ic_day_night_mode_auto);
drawable.setBounds(0, 0, drawable.getMinimumWidth(),
drawable.getMinimumHeight());
mDaynightModeTv
.setCompoundDrawables(null, drawable, null, null);
} else if (mDaynightModeInt % 3 == 1) {
// 日间模式
mDaynightModeTv.setText("日间模式");
Drawable drawable = getResources().getDrawable(
R.drawable.ic_day_night_mode_day);
drawable.setBounds(0, 0, drawable.getMinimumWidth(),
drawable.getMinimumHeight());
mDaynightModeTv
.setCompoundDrawables(null, drawable, null, null);
} else {
// 夜间模式
mDaynightModeTv.setText("夜间模式");
Drawable drawable = getResources().getDrawable(
R.drawable.ic_day_night_mode_night);
drawable.setBounds(0, 0, drawable.getMinimumWidth(),
drawable.getMinimumHeight());
mDaynightModeTv
.setCompoundDrawables(null, drawable, null, null);
}