How to make imageView backgroud change one time











up vote
0
down vote

favorite












if (buttonClicked.contains(1) && buttonClicked.contains(2)) {
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)

}
}

if (buttonClicked.contains(3) && buttonClicked.contains(4) && buttonClicked.contains(5)) {
if (playerOneLastClicked) {
imgViewBackground2.setImageResource(R.drawable.rca)
} else {
imgViewBackground4.setImageResource(R.drawable.wac)
}
}


when player1 or player2 last click in (buttonClicked.contains(1) && buttonClicked.contains(2)) imgViewBackgound1 change but when the players click button 3,4 or 5 imgViewBackground keep changing.



i want when imgViewBackground1 take (R.drawable.rca) or (R.drawable.wac) don't change any more










share|improve this question
























  • Will your imgViewBackgroundX already have a bitmap prior to setting this way? (in other words, will it be null or not?)
    – Blue Jones
    Nov 18 at 22:20












  • when imgViewBackground set background rca or wac i want be not enable for don't change any more
    – younes abid
    Nov 19 at 0:27















up vote
0
down vote

favorite












if (buttonClicked.contains(1) && buttonClicked.contains(2)) {
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)

}
}

if (buttonClicked.contains(3) && buttonClicked.contains(4) && buttonClicked.contains(5)) {
if (playerOneLastClicked) {
imgViewBackground2.setImageResource(R.drawable.rca)
} else {
imgViewBackground4.setImageResource(R.drawable.wac)
}
}


when player1 or player2 last click in (buttonClicked.contains(1) && buttonClicked.contains(2)) imgViewBackgound1 change but when the players click button 3,4 or 5 imgViewBackground keep changing.



i want when imgViewBackground1 take (R.drawable.rca) or (R.drawable.wac) don't change any more










share|improve this question
























  • Will your imgViewBackgroundX already have a bitmap prior to setting this way? (in other words, will it be null or not?)
    – Blue Jones
    Nov 18 at 22:20












  • when imgViewBackground set background rca or wac i want be not enable for don't change any more
    – younes abid
    Nov 19 at 0:27













up vote
0
down vote

favorite









up vote
0
down vote

favorite











if (buttonClicked.contains(1) && buttonClicked.contains(2)) {
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)

}
}

if (buttonClicked.contains(3) && buttonClicked.contains(4) && buttonClicked.contains(5)) {
if (playerOneLastClicked) {
imgViewBackground2.setImageResource(R.drawable.rca)
} else {
imgViewBackground4.setImageResource(R.drawable.wac)
}
}


when player1 or player2 last click in (buttonClicked.contains(1) && buttonClicked.contains(2)) imgViewBackgound1 change but when the players click button 3,4 or 5 imgViewBackground keep changing.



i want when imgViewBackground1 take (R.drawable.rca) or (R.drawable.wac) don't change any more










share|improve this question















if (buttonClicked.contains(1) && buttonClicked.contains(2)) {
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)

}
}

if (buttonClicked.contains(3) && buttonClicked.contains(4) && buttonClicked.contains(5)) {
if (playerOneLastClicked) {
imgViewBackground2.setImageResource(R.drawable.rca)
} else {
imgViewBackground4.setImageResource(R.drawable.wac)
}
}


when player1 or player2 last click in (buttonClicked.contains(1) && buttonClicked.contains(2)) imgViewBackgound1 change but when the players click button 3,4 or 5 imgViewBackground keep changing.



i want when imgViewBackground1 take (R.drawable.rca) or (R.drawable.wac) don't change any more







android kotlin






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 at 5:36









Jayson Minard

36.2k14104170




36.2k14104170










asked Nov 18 at 18:47









younes abid

55




55












  • Will your imgViewBackgroundX already have a bitmap prior to setting this way? (in other words, will it be null or not?)
    – Blue Jones
    Nov 18 at 22:20












  • when imgViewBackground set background rca or wac i want be not enable for don't change any more
    – younes abid
    Nov 19 at 0:27


















  • Will your imgViewBackgroundX already have a bitmap prior to setting this way? (in other words, will it be null or not?)
    – Blue Jones
    Nov 18 at 22:20












  • when imgViewBackground set background rca or wac i want be not enable for don't change any more
    – younes abid
    Nov 19 at 0:27
















Will your imgViewBackgroundX already have a bitmap prior to setting this way? (in other words, will it be null or not?)
– Blue Jones
Nov 18 at 22:20






Will your imgViewBackgroundX already have a bitmap prior to setting this way? (in other words, will it be null or not?)
– Blue Jones
Nov 18 at 22:20














when imgViewBackground set background rca or wac i want be not enable for don't change any more
– younes abid
Nov 19 at 0:27




when imgViewBackground set background rca or wac i want be not enable for don't change any more
– younes abid
Nov 19 at 0:27












1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










If imgViewBackground is not going to have an imageview you could just add an extra check e.g.



if (imgViewBackground1.drawable == null) {
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}


or if it would have an imageview already and you don't want it set again



if (imgViewBackground1.drawable != resources.getDrawable(R.drawable.rcs, null) 
|| imgViewBackground1.drawable != resources.getDrawable(R.drawable.wac, null))
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}





share|improve this answer























  • when i did if (playerOneLastClicked && imgViewBackground1.drawable == null) imgViewBackground1 set only (R.drawable.wac)
    – younes abid
    Nov 19 at 12:16












  • Edited, sorry I wrote wrong the first time
    – Blue Jones
    Nov 19 at 12:22












  • when i did what you say first and seconde imgViewBackground1 don't show image (rca , wac) never
    – younes abid
    Nov 19 at 12:35












  • Does that mean you set the imgViewBackground1 before? So the imgViewBackground1.drawable wouldn't be null ? If so try my second suggestion
    – Blue Jones
    Nov 19 at 12:37












  • i did your second suggestion the image appears but he keep change when i click other button. how i set imgViewBackground1 null to do your first suggestion
    – younes abid
    Nov 19 at 12:48











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53364336%2fhow-to-make-imageview-backgroud-change-one-time%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote



accepted










If imgViewBackground is not going to have an imageview you could just add an extra check e.g.



if (imgViewBackground1.drawable == null) {
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}


or if it would have an imageview already and you don't want it set again



if (imgViewBackground1.drawable != resources.getDrawable(R.drawable.rcs, null) 
|| imgViewBackground1.drawable != resources.getDrawable(R.drawable.wac, null))
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}





share|improve this answer























  • when i did if (playerOneLastClicked && imgViewBackground1.drawable == null) imgViewBackground1 set only (R.drawable.wac)
    – younes abid
    Nov 19 at 12:16












  • Edited, sorry I wrote wrong the first time
    – Blue Jones
    Nov 19 at 12:22












  • when i did what you say first and seconde imgViewBackground1 don't show image (rca , wac) never
    – younes abid
    Nov 19 at 12:35












  • Does that mean you set the imgViewBackground1 before? So the imgViewBackground1.drawable wouldn't be null ? If so try my second suggestion
    – Blue Jones
    Nov 19 at 12:37












  • i did your second suggestion the image appears but he keep change when i click other button. how i set imgViewBackground1 null to do your first suggestion
    – younes abid
    Nov 19 at 12:48















up vote
0
down vote



accepted










If imgViewBackground is not going to have an imageview you could just add an extra check e.g.



if (imgViewBackground1.drawable == null) {
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}


or if it would have an imageview already and you don't want it set again



if (imgViewBackground1.drawable != resources.getDrawable(R.drawable.rcs, null) 
|| imgViewBackground1.drawable != resources.getDrawable(R.drawable.wac, null))
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}





share|improve this answer























  • when i did if (playerOneLastClicked && imgViewBackground1.drawable == null) imgViewBackground1 set only (R.drawable.wac)
    – younes abid
    Nov 19 at 12:16












  • Edited, sorry I wrote wrong the first time
    – Blue Jones
    Nov 19 at 12:22












  • when i did what you say first and seconde imgViewBackground1 don't show image (rca , wac) never
    – younes abid
    Nov 19 at 12:35












  • Does that mean you set the imgViewBackground1 before? So the imgViewBackground1.drawable wouldn't be null ? If so try my second suggestion
    – Blue Jones
    Nov 19 at 12:37












  • i did your second suggestion the image appears but he keep change when i click other button. how i set imgViewBackground1 null to do your first suggestion
    – younes abid
    Nov 19 at 12:48













up vote
0
down vote



accepted







up vote
0
down vote



accepted






If imgViewBackground is not going to have an imageview you could just add an extra check e.g.



if (imgViewBackground1.drawable == null) {
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}


or if it would have an imageview already and you don't want it set again



if (imgViewBackground1.drawable != resources.getDrawable(R.drawable.rcs, null) 
|| imgViewBackground1.drawable != resources.getDrawable(R.drawable.wac, null))
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}





share|improve this answer














If imgViewBackground is not going to have an imageview you could just add an extra check e.g.



if (imgViewBackground1.drawable == null) {
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}


or if it would have an imageview already and you don't want it set again



if (imgViewBackground1.drawable != resources.getDrawable(R.drawable.rcs, null) 
|| imgViewBackground1.drawable != resources.getDrawable(R.drawable.wac, null))
if (playerOneLastClicked) {
imgViewBackground1.setImageResource(R.drawable.rca)
} else {
imgViewBackground1.setImageResource(R.drawable.wac)
}
}
}






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 19 at 12:50

























answered Nov 19 at 9:17









Blue Jones

1666




1666












  • when i did if (playerOneLastClicked && imgViewBackground1.drawable == null) imgViewBackground1 set only (R.drawable.wac)
    – younes abid
    Nov 19 at 12:16












  • Edited, sorry I wrote wrong the first time
    – Blue Jones
    Nov 19 at 12:22












  • when i did what you say first and seconde imgViewBackground1 don't show image (rca , wac) never
    – younes abid
    Nov 19 at 12:35












  • Does that mean you set the imgViewBackground1 before? So the imgViewBackground1.drawable wouldn't be null ? If so try my second suggestion
    – Blue Jones
    Nov 19 at 12:37












  • i did your second suggestion the image appears but he keep change when i click other button. how i set imgViewBackground1 null to do your first suggestion
    – younes abid
    Nov 19 at 12:48


















  • when i did if (playerOneLastClicked && imgViewBackground1.drawable == null) imgViewBackground1 set only (R.drawable.wac)
    – younes abid
    Nov 19 at 12:16












  • Edited, sorry I wrote wrong the first time
    – Blue Jones
    Nov 19 at 12:22












  • when i did what you say first and seconde imgViewBackground1 don't show image (rca , wac) never
    – younes abid
    Nov 19 at 12:35












  • Does that mean you set the imgViewBackground1 before? So the imgViewBackground1.drawable wouldn't be null ? If so try my second suggestion
    – Blue Jones
    Nov 19 at 12:37












  • i did your second suggestion the image appears but he keep change when i click other button. how i set imgViewBackground1 null to do your first suggestion
    – younes abid
    Nov 19 at 12:48
















when i did if (playerOneLastClicked && imgViewBackground1.drawable == null) imgViewBackground1 set only (R.drawable.wac)
– younes abid
Nov 19 at 12:16






when i did if (playerOneLastClicked && imgViewBackground1.drawable == null) imgViewBackground1 set only (R.drawable.wac)
– younes abid
Nov 19 at 12:16














Edited, sorry I wrote wrong the first time
– Blue Jones
Nov 19 at 12:22






Edited, sorry I wrote wrong the first time
– Blue Jones
Nov 19 at 12:22














when i did what you say first and seconde imgViewBackground1 don't show image (rca , wac) never
– younes abid
Nov 19 at 12:35






when i did what you say first and seconde imgViewBackground1 don't show image (rca , wac) never
– younes abid
Nov 19 at 12:35














Does that mean you set the imgViewBackground1 before? So the imgViewBackground1.drawable wouldn't be null ? If so try my second suggestion
– Blue Jones
Nov 19 at 12:37






Does that mean you set the imgViewBackground1 before? So the imgViewBackground1.drawable wouldn't be null ? If so try my second suggestion
– Blue Jones
Nov 19 at 12:37














i did your second suggestion the image appears but he keep change when i click other button. how i set imgViewBackground1 null to do your first suggestion
– younes abid
Nov 19 at 12:48




i did your second suggestion the image appears but he keep change when i click other button. how i set imgViewBackground1 null to do your first suggestion
– younes abid
Nov 19 at 12:48


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53364336%2fhow-to-make-imageview-backgroud-change-one-time%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Costa Masnaga

Fotorealismo

Sidney Franklin