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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:19:59+00:00 2026-05-25T19:19:59+00:00

I am trying to start an activity from a normal class and I can’t

  • 0

I am trying to start an activity from a normal class and I can’t figure out how it is done, if it can be done. On an itemClick I want to start an activity that extends the ListView class to show a list of options.

Also the class that receives the onItemClick is not an activity. I will post the code to try to visualize what i mean.

This is my onClick method in the class that wants to start a an activity.

public void onClick(View v) {
        if (v.equals(this)) {
            notifyObservers(this.getId());
        } else if(v.equals(editButton) || v.equals(deleteButton)) {
            This is where I want to start the activity to show my ListView...
        }

}

This is my class that extends the ListView class.

public class ProfileSettings extends ListActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        String[] mainSettings = getResources().getStringArray(R.array.mainSettings);

        setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, mainSettings));

        ListView lv = getListView();
        lv.setTextFilterEnabled(true);

        lv.setOnItemClickListener(new OnItemClickListener() {
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                // Do something
            }
        });
    }
}

Thanks in advance!

  • 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-25T19:19:59+00:00Added an answer on May 25, 2026 at 7:19 pm

    I think this may help you:

    “Pass the context of the activity via constructor to your class or make a static context in your activity.
    With the context you can start activities like you would start them within the activity class.”

        class First extends Activity {
        ...
        Second test = new Second(this);
        test.start();
        ...
    }
    
    class Second {
        private Context mContext;
        ...
        public Second(Context c) { this.mContext = c; }
        ...
        public start() { mContext.startActivity(...); }
    }
    

    for more detail check

    http://www.anddev.org/view-layout-resource-problems-f27/starting-an-activity-from-a-non-activity-class-t14483.html

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

Sidebar

Related Questions

I'm trying to start a service from my activity like this: startService(new Intent(MyActivity.this, MyService.class));
i'm trying to start a map activity from a normal Activity. But keep getting
I'm trying to start a new activity from a non-activity class. From the main
I'm trying to start a Service from my Activity to look out for changes
I am trying to start an activity from my main activity. Its not working
I'm trying to start an activity from a service running in background but its
Hi I have a listview and, I am trying to start an activity from
I'm new on Android, and I'm trying to start an Activity from a MenuItem
I am trying to manage the activity indicator from my App Delegate, that way
I am trying to display messages from C2DM so When I start an Activity

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.