このコードの何が問題になっていますか? 私は何時間も dwb2 ColorFiltered を取得するのに苦労しており、このボタンを押すと元のリソースが表示されるだけです:(
public ButtonEx(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
Drawable dwb = getResources().getDrawable(R.drawable.mainboard_btn_pen_colour);
Drawable dwb2 = new BitmapDrawable(BitmapFactory.decodeResource(getResources(), R.drawable.mainboard_btn_extra_time1)
.copy( Bitmap.Config.ARGB_8888, true));
dwb2.setColorFilter(getResources().getColor(R.color.mod_selected), PorterDuff.Mode.MULTIPLY);
mLstDrawables.addState(new int[] {android.R.attr.state_pressed}, dwb2);
mLstDrawables.addState(StateSet.WILD_CARD, dwb);
setBackgroundDrawable(mLstDrawables);
}