Array Image and Audio change by clicking on “Next” and “Previous” button in Android
I am making simple on Android and it has 5 Images and 5 Audio Sounds and I created separate array for both of them. I want when I click on next button then R.drawable.anp1
image appears and produces R.raw.q1
sound and again when I click on next button then R.drawable.anp2
image appears and produces R.raw.q2 sound
. In this case my Images Array is working perfectly as I want but problem is that my audio is not working correct, my next button audio is working well but when I come back to previous button then it produces firstly next button sound and then come to the previous.
I want like image1=sound1
, image2=sound2
, image3=sound3
, but the problem is that when I click on Previous button its look like this image2=sound3
, image1=sound2
.
Secondly, one more problem is that when one loop is completed then it muted all the sounds, why?
If you know any method, any if-else OR Switch-case logic then please reply me, any help will be appreciated.This is my code:
public class Parandegan extends AppCompatActivity {
private ImageView hImageViewPic;
private Button iButton,gButton;
MediaPlayer ourSong;
private int currentImage = 0;
public int currentAudio = 0;
int images = { R.drawable.anp1, R.drawable.anp2, R.drawable.anp3, R.drawable.anp4, R.drawable.anp5 };
int audios = { R.raw.q1, R.raw.q2, R.raw.q3, R.raw.q4, R.raw.q5 };
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_parandegan);
hImageViewPic = findViewById(R.id.idImageViewPic);
iButton = findViewById(R.id.bIleri);
gButton = findViewById(R.id.bGeri);
iButton.setOnClickListener(iButtonChangeImageListener);
gButton.setOnClickListener(gButtonChangeImageListener); }
View.OnClickListener iButtonChangeImageListener = new View.OnClickListener() {
public void onClick(View v) {
try {
currentImage++;
currentImage = currentImage % images.length;
hImageViewPic.setImageResource(images[currentImage]);
ourSong = MediaPlayer.create(Parandegan.this,audios[currentAudio]);
currentAudio++;
ourSong.start();
}
catch (Exception e)
{
}
} };
View.OnClickListener gButtonChangeImageListener = new View.OnClickListener() {
public void onClick(View v) {
try {
currentImage--;
currentImage = (currentImage + images.length) % images.length;
hImageViewPic.setImageResource(images[currentImage]);
MediaPlayer.create(Parandegan.this,audios[currentAudio]);
currentAudio--;
ourSong.start();
}
catch (Exception e)
{
}
} };
protected void onPause() {
super.onPause();
ourSong.release();
finish();
}
}
java


add a comment |
I am making simple on Android and it has 5 Images and 5 Audio Sounds and I created separate array for both of them. I want when I click on next button then R.drawable.anp1
image appears and produces R.raw.q1
sound and again when I click on next button then R.drawable.anp2
image appears and produces R.raw.q2 sound
. In this case my Images Array is working perfectly as I want but problem is that my audio is not working correct, my next button audio is working well but when I come back to previous button then it produces firstly next button sound and then come to the previous.
I want like image1=sound1
, image2=sound2
, image3=sound3
, but the problem is that when I click on Previous button its look like this image2=sound3
, image1=sound2
.
Secondly, one more problem is that when one loop is completed then it muted all the sounds, why?
If you know any method, any if-else OR Switch-case logic then please reply me, any help will be appreciated.This is my code:
public class Parandegan extends AppCompatActivity {
private ImageView hImageViewPic;
private Button iButton,gButton;
MediaPlayer ourSong;
private int currentImage = 0;
public int currentAudio = 0;
int images = { R.drawable.anp1, R.drawable.anp2, R.drawable.anp3, R.drawable.anp4, R.drawable.anp5 };
int audios = { R.raw.q1, R.raw.q2, R.raw.q3, R.raw.q4, R.raw.q5 };
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_parandegan);
hImageViewPic = findViewById(R.id.idImageViewPic);
iButton = findViewById(R.id.bIleri);
gButton = findViewById(R.id.bGeri);
iButton.setOnClickListener(iButtonChangeImageListener);
gButton.setOnClickListener(gButtonChangeImageListener); }
View.OnClickListener iButtonChangeImageListener = new View.OnClickListener() {
public void onClick(View v) {
try {
currentImage++;
currentImage = currentImage % images.length;
hImageViewPic.setImageResource(images[currentImage]);
ourSong = MediaPlayer.create(Parandegan.this,audios[currentAudio]);
currentAudio++;
ourSong.start();
}
catch (Exception e)
{
}
} };
View.OnClickListener gButtonChangeImageListener = new View.OnClickListener() {
public void onClick(View v) {
try {
currentImage--;
currentImage = (currentImage + images.length) % images.length;
hImageViewPic.setImageResource(images[currentImage]);
MediaPlayer.create(Parandegan.this,audios[currentAudio]);
currentAudio--;
ourSong.start();
}
catch (Exception e)
{
}
} };
protected void onPause() {
super.onPause();
ourSong.release();
finish();
}
}
java


add a comment |
I am making simple on Android and it has 5 Images and 5 Audio Sounds and I created separate array for both of them. I want when I click on next button then R.drawable.anp1
image appears and produces R.raw.q1
sound and again when I click on next button then R.drawable.anp2
image appears and produces R.raw.q2 sound
. In this case my Images Array is working perfectly as I want but problem is that my audio is not working correct, my next button audio is working well but when I come back to previous button then it produces firstly next button sound and then come to the previous.
I want like image1=sound1
, image2=sound2
, image3=sound3
, but the problem is that when I click on Previous button its look like this image2=sound3
, image1=sound2
.
Secondly, one more problem is that when one loop is completed then it muted all the sounds, why?
If you know any method, any if-else OR Switch-case logic then please reply me, any help will be appreciated.This is my code:
public class Parandegan extends AppCompatActivity {
private ImageView hImageViewPic;
private Button iButton,gButton;
MediaPlayer ourSong;
private int currentImage = 0;
public int currentAudio = 0;
int images = { R.drawable.anp1, R.drawable.anp2, R.drawable.anp3, R.drawable.anp4, R.drawable.anp5 };
int audios = { R.raw.q1, R.raw.q2, R.raw.q3, R.raw.q4, R.raw.q5 };
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_parandegan);
hImageViewPic = findViewById(R.id.idImageViewPic);
iButton = findViewById(R.id.bIleri);
gButton = findViewById(R.id.bGeri);
iButton.setOnClickListener(iButtonChangeImageListener);
gButton.setOnClickListener(gButtonChangeImageListener); }
View.OnClickListener iButtonChangeImageListener = new View.OnClickListener() {
public void onClick(View v) {
try {
currentImage++;
currentImage = currentImage % images.length;
hImageViewPic.setImageResource(images[currentImage]);
ourSong = MediaPlayer.create(Parandegan.this,audios[currentAudio]);
currentAudio++;
ourSong.start();
}
catch (Exception e)
{
}
} };
View.OnClickListener gButtonChangeImageListener = new View.OnClickListener() {
public void onClick(View v) {
try {
currentImage--;
currentImage = (currentImage + images.length) % images.length;
hImageViewPic.setImageResource(images[currentImage]);
MediaPlayer.create(Parandegan.this,audios[currentAudio]);
currentAudio--;
ourSong.start();
}
catch (Exception e)
{
}
} };
protected void onPause() {
super.onPause();
ourSong.release();
finish();
}
}
java


I am making simple on Android and it has 5 Images and 5 Audio Sounds and I created separate array for both of them. I want when I click on next button then R.drawable.anp1
image appears and produces R.raw.q1
sound and again when I click on next button then R.drawable.anp2
image appears and produces R.raw.q2 sound
. In this case my Images Array is working perfectly as I want but problem is that my audio is not working correct, my next button audio is working well but when I come back to previous button then it produces firstly next button sound and then come to the previous.
I want like image1=sound1
, image2=sound2
, image3=sound3
, but the problem is that when I click on Previous button its look like this image2=sound3
, image1=sound2
.
Secondly, one more problem is that when one loop is completed then it muted all the sounds, why?
If you know any method, any if-else OR Switch-case logic then please reply me, any help will be appreciated.This is my code:
public class Parandegan extends AppCompatActivity {
private ImageView hImageViewPic;
private Button iButton,gButton;
MediaPlayer ourSong;
private int currentImage = 0;
public int currentAudio = 0;
int images = { R.drawable.anp1, R.drawable.anp2, R.drawable.anp3, R.drawable.anp4, R.drawable.anp5 };
int audios = { R.raw.q1, R.raw.q2, R.raw.q3, R.raw.q4, R.raw.q5 };
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_parandegan);
hImageViewPic = findViewById(R.id.idImageViewPic);
iButton = findViewById(R.id.bIleri);
gButton = findViewById(R.id.bGeri);
iButton.setOnClickListener(iButtonChangeImageListener);
gButton.setOnClickListener(gButtonChangeImageListener); }
View.OnClickListener iButtonChangeImageListener = new View.OnClickListener() {
public void onClick(View v) {
try {
currentImage++;
currentImage = currentImage % images.length;
hImageViewPic.setImageResource(images[currentImage]);
ourSong = MediaPlayer.create(Parandegan.this,audios[currentAudio]);
currentAudio++;
ourSong.start();
}
catch (Exception e)
{
}
} };
View.OnClickListener gButtonChangeImageListener = new View.OnClickListener() {
public void onClick(View v) {
try {
currentImage--;
currentImage = (currentImage + images.length) % images.length;
hImageViewPic.setImageResource(images[currentImage]);
MediaPlayer.create(Parandegan.this,audios[currentAudio]);
currentAudio--;
ourSong.start();
}
catch (Exception e)
{
}
} };
protected void onPause() {
super.onPause();
ourSong.release();
finish();
}
}
java


java


edited Nov 21 '18 at 5:52
Vahid_Karimzadeh
asked Nov 20 '18 at 7:30


Vahid_KarimzadehVahid_Karimzadeh
13
13
add a comment |
add a comment |
0
active
oldest
votes
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',
autoActivateHeartbeat: false,
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53388173%2farray-image-and-audio-change-by-clicking-on-next-and-previous-button-in-andr%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53388173%2farray-image-and-audio-change-by-clicking-on-next-and-previous-button-in-andr%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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