0
Androidスタジオの相対レイアウトですべての画像ビューを削除し、保存して後で置き換えたいとします。オブジェクトがイメージビューであるかどうかを証明する方法は?
RelativeLayout rl = (RelativeLayout) findViewById(R.id.relativeLayout);
ArrayList al = rl.getTouchables();
rl.removeAllViews();
//do something
for(int i=0; i<al.size(); i++)
{
if(al.get(i).equals(new ImageView(this)))
rl.addView((ImageView) al.get(i));
}
のprogrammは:(
instanceof? ref:http://stackoverflow.com/questions/7313559/what-is-the-instanceof-operator-used-for –