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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T04:47:51+00:00 2026-05-18T04:47:51+00:00

This must be a noob question, but I can’t find the proper wait to

  • 0

This must be a noob question, but I can’t find the proper wait to achieve the following:

In android, I made a subclass MyView extending a View class. In B, I’ve defined a method mMethod not present in the View class.

Now, I want to set an OnClickListener interface on MyView. Doing this, I must override a onClick method when defining a new OnClickListener. Furthermore, I would like to access the mMethod method in onClick, but the overriden method is expecting a View class instance, not a MyView’s one. So what can I do ?

To be more precise:

public class MyView extends View{
  ...
    public void mMethod(){
    ...
    }
}

And in the main class (Activity)

MyView  myView = new MyView () 
//It's not the correct constructor, but it's not the point

myView.setOnClickListener(new OnClickListener(){

    @Override
    public boolean onClick(View v){
        //Here I would like to access mMethod of MyView
        ???
    }

}

Is using myView.mMethod() is the only solution ? Is it possible to downcast v to (MyView)v ? If so, how to do it ? Should I define a sub-interface ?

Thank you!

  • 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-18T04:47:52+00:00Added an answer on May 18, 2026 at 4:47 am

    Well, you could use:

    public boolean onClick(View v) {
        MyView mv = (MyView) v;
        mv.myMethod();
    }
    

    That way you know you’re operating on the right view – and it will throw an exception if you are given the wrong kind of view. (If you don’t want to throw an exception, you could use instanceof to test that it’s the right kind of view first.)

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

Sidebar

Related Questions

This must be a FAQ, but I can’t find a duplicate question! There are
This surely is a noob question, but I can't find an answer in Doxygen
This must be a stupid question, but nevertheless I find it curious: Say I
I feel like this is a very noob question.. but I just can't get
This must be a very simple question, but I don't seem to be able
This must be simple, but I can't seem to figure it out. I am
This must be a dumb question, but I don't see any obvious references. How
this must be such a simple problem but can someone tell me why this
Now this must be easy, but how can sum two NSNumber ? Is like:
This must be a relatively newb question but I am still stuck. I know

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.