从TypedArray中删除

时间:2014-06-13 17:33:41

标签: android eclipse

我在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);
}

0 个答案:

没有答案