我在TypedArray类型中有一个Object。有没有可能从那里删除对象?这是我的代码,其中Deck属于TypedArray类型。我正在尝试删除整数randomIntD
public void onClick(View view){
int randomIntD = random2.nextInt(Deck.length());
int drawableIDD = Deck.getResourceId(randomIntD, -1);
//Deck.remove(randomIntD);
backgroundD2.setBackgroundResource(drawableIDD);
}