TextView的使用(不定期更新)

setCompoundDrawables

功能:可以在TextView的上下左右设置图片
使用方法:

Drawable drawable = mContext.getResources().getDrawable(R.drawable.duringtime);
//必须设置图片大小,否则不显示
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());

holder.time.setCompoundDrawables(drawable, null, null, null);

判断TextView内容是否为空

TextUtils.isEmpty(textview.getText())

你可能感兴趣的:(android)