0

ボタンを使用して画像を更新しようとしています

private void visitUpdateImage(int type) {

if(type == 0){
    if(ecran != 1){
        ecran--;
    }
}
else if(type == 1){
    if(ecran != nbEcrans){
        ecran++;
    }
}

int[] images = new int[nbEcrans];
images[0] = R.drawable.ecran1;
images[1] = R.drawable.ecran2;
images[2] = R.drawable.ecran3;
images[3] = R.drawable.ecran4;
images[4] = R.drawable.ecran5;
images[5] = R.drawable.ecran6;
images[6] = R.drawable.ecran7;

ImageView image = (ImageView) findViewById(R.id.imageView);

image.setImageResource(images[ecran - 1]);

System.out.println(ecran);

}

冒頭は良いですが、images [5] ilはecran6の代わりにic_launcherをロードし、image[6]は何もロードしません

私はすべてのドローアブルリポジトリにすべてのエクランを持っています

手伝ってくれてありがとう

4

1 に答える 1

1

推測するだけです(条件が間違っています)使用:

if(type == 0){
    if(ecran != 0){ //min is 0
        ecran--;
    }
}
else if(type == 1){
    if(ecran != nbEcrans-1){ //max is nbEcrans-1
        ecran++;
    }
}
于 2013-01-30T17:49:00.863 に答える