drawableRightset 和 CompoundDrawables

android:drawableRight="@drawable/check_down"

在代码中的用法是:

Drawable drawable = getResources().getDrawable(R.drawable.spinner_checked);
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());  //设置边界
titleTv.setCompoundDrawables(null, null, drawable, null);   //画在右边

 

posted on 2015-10-19 13:12  大米稀饭  阅读(221)  评论(0编辑  收藏  举报