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 8538747
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T11:11:43+00:00 2026-06-11T11:11:43+00:00

i have created a custom image button; one is play image button and one

  • 0

i have created a custom image button; one is play image button and one is pause image button.

i want to switch between play and pause (i.e when the user clicks on the button,it has to change – play to pause or pause to play).

for my requirement, i have referred to this example url

when i execute my program, i am able to display the button, but when i click on the button, i am not able to change the imagebutton (play to pause)

can any one help me?

  • 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-06-11T11:11:44+00:00Added an answer on June 11, 2026 at 11:11 am

    The example that you are working off of uses two images, the on and the off image. However, it uses these two images to change the look of the button based on whether the button has focus or not.

    You want something a little different. You want to change the look of the button whenever the button gets clicked. To do that, you can use this existing method:

    protected boolean navigationClick(int status, int time){
        fieldChangeNotify(1);
        return true;
    }
    

    To do this, change (or add) some member variables to store the play and pause bitmaps, and then change navigationClick() to toggle between them:

    private Bitmap _currentPicture;
    private Bitmap _playPicture;
    private Bitmap _pausePicture;
    
    protected boolean navigationClick(int status, int time){
        if (_currentPicture == _playPicture) {
            _currentPicture = _pausePicture;
        } else {
            _currentPicture = _playPicture;
        }
        invalidate();  // may be necessary to force redraw of the button
    
        fieldChangeNotify(1);
        return true;
    }
    

    Edit: you also might want to perform the same logic (as above in navigationClick()) in the trackwheelClick() and keyChar() methods, depending on whether your buttons should be clickable by using the trackwheel or enter keys, too. See an example of that here

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

Sidebar

Related Questions

I have created custom posts and I want one page in my site to
This way i have created my custom button and set the image.I have set
I have created custom cell in which there are n number of image views.
I have created one gridview and use custom adapter for that. I added two
I have created a custom TaskButton control that takes an image and text. The
I have created one gridview and use custom adapter for that. I added two
I have one listview.which contain one image ,text and one button .i had creted
I want to create an NSPopUpButton with a custom active image. I have two
I have created a custom Button as follows. file : buttoncontrol.xml <?xml version=1.0 encoding=utf-8?>
I've created a custom button in my Android app that has basically two different

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.