Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7565517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:10:31+00:00 2026-05-30T14:10:31+00:00

i have the following code: @Override public boolean dispatchKeyEvent(KeyEvent event) { int action =

  • 0

i have the following code:

@Override
public boolean dispatchKeyEvent(KeyEvent event) {
    int action = event.getAction();
    int keyCode = event.getKeyCode();
        switch (keyCode) {
        case KeyEvent.KEYCODE_VOLUME_UP:
            if (action == KeyEvent.ACTION_UP) {
                int currentVolume = 0;
                currentVolume = audio.getStreamVolume(AudioManager.STREAM_MUSIC);
                if(currentVolume != 15){
                    audio.setStreamVolume(AudioManager.STREAM_MUSIC, currentVolume+1, 0);
                }
                volumeSlider.setProgress(currentVolume+1);

            }
            return true;
        case KeyEvent.KEYCODE_VOLUME_DOWN:
            if (action == KeyEvent.ACTION_DOWN) {
                int currentVolume = 0;
                currentVolume = audio.getStreamVolume(AudioManager.STREAM_MUSIC);
                if(currentVolume != 0){
                    audio.setStreamVolume(AudioManager.STREAM_MUSIC, currentVolume-1, 0);
                }
                volumeSlider.setProgress(currentVolume-1);
            }
            return true;
        default:
            return super.dispatchKeyEvent(event);
        }
    }

I have the following issue, with this code my app allows me to hold the volume down key and keeps reacting, however when i press and hold the volume up key on my device my code only gets triggered once.

Why is this? am i doing something wrong?

regards

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T14:10:33+00:00Added an answer on May 30, 2026 at 2:10 pm

    Change

    if (action == KeyEvent.ACTION_UP)
    

    on

    if (action == KeyEvent.ACTION_DOWN)
    

    for KEYCODE_VOLUME_UP

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a following pseudo-code. public boolean onContextItemSelected(MenuItem aItem) { switch(aItem.getItemId()) { case A:
while compiling the following code i have got error @Override public void routeCustomerRequest (int
I have the following Callable: public class Worker implements Callable<Boolean>{ @Override public Boolean call(){
I have the following code: public abstract class A<T extends B<? extends A<T>>>{ @Override
I have the following code for a one off alarm... public boolean onMenuItemClick(MenuItem item)
I Have following code: Controller: public ActionResult Step1() { return View(); } [AcceptVerbs(HttpVerbs.Post)] public
I have written following code for getting location name : UseGpsActivity.java public class UseGpsActivity
I have a ContentProvider named GeneralDataProvider . Which calls @Override public boolean onCreate() {
Hi All I have the following code: enter code here public class XMPPClient extends
I have code like the following in a UserControl: Protected Overrides Sub Render(ByVal writer

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.