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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T22:46:06+00:00 2026-05-21T22:46:06+00:00

I have a design issue. I need to implement a listener. I saw the

  • 0

I have a design issue. I need to implement a listener. I saw the following SO question:
How to create our own Listener interface in android?

But in the link it provides in the answer, author creates a listener which just extends the system-defined listener. E.g onClick, you would do some validation & then call another method called “whenValidatedListener”

I need to define listeners which are not linked to existing event listeners. Basically there would be some processing going on in native(C/C++) code & in the Android code I need a listener to respond to certain messages from it.

I think I could do this using handlers. But AsyncTask is the recommended approach for multithreading.

Is there a way to implement a user-defined-listener using AsyncTask?

  • 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-21T22:46:07+00:00Added an answer on May 21, 2026 at 10:46 pm

    AsyncTask has nothing to do with implementing a listener.

    Here’s a listener:

    public interface TheListener {
        public void somethingHappened();
    }
    

    Call it however you want. For example, here’s a class doing something like View:

    public class Something {
        private TheListener mTheListener;
    
        public void setTheListener(TheListener listen) {
            mTheListener = listen;
        }
    
        private void reportSomethingChanged() {
            if (mTheListener != null) {
                mTheListener.somethingHappened();
            }
        }
    }
    

    You can make this as complicated as you want. For example, instead of a single listener pointer you could have an ArrayList to allow multiple listeners to be registered.

    Calling this from native code also has nothing to do with implementing a listener interface. You just need to learn about JNI to learn how native code can interact with Java language code.

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

Sidebar

Related Questions

I have a design question. We need to put some default, system defined content
We have a design we need to implement where the concept is the user
I have run into a bit of a design issue with my code. I
I'm having a design/css issue. I'm using Twitter Bootstrap and have a .row-fluid, with
I have a design problem: Question class: have a question and answer (String) TextQuestion
Have a quick question about what would be the best way to implement iterators
i have a design issue regarding sending user data from a mobile phone app
My question is a design issue and it has been driving crazy over the
I need to IMPLEMENT(not to use some library/open source) an event/message system. I have
I need to implement an observer design pattern in PHP. The problem with the

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.