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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:51:27+00:00 2026-05-27T01:51:27+00:00

While writing an Android App, when I use TextView in different class(MyClass) other than

  • 0

While writing an Android App, when I use TextView in different class(MyClass) other than the main class,
I’m getting an error:

The method findViewById(int) is undefined for the type MyClass

Please tell me the point I’m missing.

  • 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-27T01:51:27+00:00Added an answer on May 27, 2026 at 1:51 am

    MyClass doesn’t extend androids Activity class, therefore you don’t have that method available. So you have to get a reference to use it, preferably through a method argument (never store a activity/context reference in a class member variable, it might result in a memory leak):

    Small sample:

    class MyActivity extends Activity {
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            MyClass m = new MyClass();
            m.doSomething(this);
    
            //...
        }
    }
    

    And in MyClass

    class MyClass {
        public void doSomething(Activity a) {
            View v = a.findViewById(...);
            // do something here ...
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing an Android app that is parsing RSS feeds from different sources. What
I'm writing a toy car-navigation app for Android, mostly to learn the Android SDK.
I'm writing an Android app for work that shows the status of our phone
My Android app is reading and writing to a local SQLite DB from a
I am writing an Android app that initializes a DatagramSocket to connect to a
I am writing an app for Android that grabs meta data from SHOUTcast mp3
I am writing an Android Chat App. I am listening for connections and I
I'm writing an android app that will connect to a REST/JSON webservice. Users will
I'm writing app for android device, which is simple download manager. I want to
I am writing an android app and at some point I need to send

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.