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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:48:49+00:00 2026-05-15T19:48:49+00:00

How do I start my app from my other app? (they will not be

  • 0

How do I start my app from my other app? (they will not be package together)

–update

Manifest of the second app:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.example.helloandroid"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".HelloAndroid"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.HOME"/>
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </activity>

        <activity android:name=".HelloAndroid">
            <intent-filter>
                <action android:name="com.example.helloandroid.HelloAndroid" />
            </intent-filter>
        </activity>

    </application>


</manifest>

I calling it with:

startActivity(new Intent("com.example.helloandroid.HelloAndroid"));

and it throws:

07-16 15:11:01.455: ERROR/Desktop(610): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.example.helloandroid.HelloAndroid }

Ralated:
How to launch android applications from another application

  • 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-15T19:48:49+00:00Added an answer on May 15, 2026 at 7:48 pm

    In the first app, you will have to modify the AndroidManifest.xml. Specifically, you are going to add a custom action into the intent-filter of the activity that you want to launch from somewhere:

    <activity android:name="FirstApp">
      <intent-filter>
        <action android:name="com.example.foo.bar.YOUR_ACTION" />
      </intent-filter>
    </activity>
    

    Then, in your second app you use that action to start the activity:

    startActivity(new Intent("com.example.foo.bar.YOUR_ACTION"));
    

    With regards to your comments:

    Looks like if I change the default name “android.intent.action.MAIN” I’m not able to run the app from the Eclipse in the Virtual Device

    Keep in mind you can have as many actions as you want… for instance:

    <activity android:name="FirstApp">
      <intent-filter>
        <action android:name="com.example.foo.bar.YOUR_ACTION" />
        <action android:name="android.intent.action.MAIN" />
      </intent-filter>
    </activity>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I start running my asp.net WebForms app from the VS2008 IDE in debug
I need to start a copy of a Rails app from within Java. I
I'm trying to start my Rails app with thin from the shell script. If
In Android Development, I can simply start another Android App with data from my
I start my android app writing with modifying some example codes from the internet.
I'm trying to start a Skype intent from my Android App, passing a phone
My app some times crashes at start-up. In stack-trace only messages from built-in frameworks.
I got an interesting request from the higher ups. They want a simple app
when the user starts my app, there is a lot of data coming from
i create some project but when start App. How to Run this App one

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.