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

  • Home
  • SEARCH
  • 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 8511545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T04:01:32+00:00 2026-06-11T04:01:32+00:00

I can’t start a ‘New Activity’ when each item is clicked, I’m using a

  • 0

I can’t start a ‘New Activity’ when each item is clicked, I’m using a condition such as if-else,

if (item.equals("Aerosol")) {
  startActivity(new Intent(Search.this, Aerosol.class));
  startActivity(intent);

I use this there is nothing wrong but I can’t go to the next class.

  • 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-11T04:01:34+00:00Added an answer on June 11, 2026 at 4:01 am

    In order to start an intent, declare the Intent in the AndroidManifest as this:

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name">
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="com.example.package.EXCLASS" />
    
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application
    

    where .MainActivity is the name of the class, com.example.package is your package name, EXCLASS is whatever you would like it to be but remember what you named it.

    For every new activity you would like to start, you should redeclare a new <activity> /> in the AndroidManifest, with the same pacakage name, a new word instead of EXCLASS, and the android:name=".MainActivity" should change to be an exact copy of the class name with a decimal placed in the front. This should be placed after the <application> /> declaration so it looks like this:

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".StartingActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
    
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.example.package.EXCLASS" />
    
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>
    

    In your class, MainActivity in my example, you would declare startActivity(new Intent("com.example.package.EXCLASS")); where com.example.package is your package name, and EXCLASS is whatever your declared it to be in the AndroidManifest.

    The ending result would be:

    private void select(String item) {
        try {
            if (item.equals("Aerosol")) {
                startActivity(new Intent("com.example.package.CLASSONE"));
            }
            if (item.equals("Aluminium")) {
                startActivity(new Intent("com.example.package.CLASSTWO"));
            }
    

    Hope this helped!

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

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
Can I authenticate with just Google account username and password instead of using OAuth?
Can PHP PDO extension bind nested objects automatically ? I mean using foreign key
Can someone please explain why this doesn't work? MyClass myClass1 = new MyClass(); object
Can any one help me in sorting this out in sed/awk/perl Input file Start
Can anyone give me some tips on adding a custom button for each row
Can anyone let me know how can we change the value of kendo combobox
Can I order my users in the database, so I don't have to say
Can I change the field public virtual ClassOne ClassOne { get; set; } to
Can any one tell, how to get the result of LINQ query contains group

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.