#000000
選択状態と非選択状態のセレクター ドローアブルを作成したいと考えています#FFFFFF
。
プログラムでドローアブルを作成するにはどうすればよいですか?
現在、私は次のようにやっています:
StateListDrawable states = new StateListDrawable();
ColorDrawable cdPress = new ColorDrawable(0xFF0000);
ColorDrawable cdUnPress = new ColorDrawable(0x0101DF);
states.addState(new int[] { android.R.attr.state_selected}, cdPress);
states.addState(new int[] {-android.R.attr.state_selected}, cdUnPress);
view.setBackgroundDrawable(states);
view.setSelected(isSelected);