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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:51:42+00:00 2026-06-08T06:51:42+00:00

I am pretty new to Android and I am having an issue. I keep

  • 0

I am pretty new to Android and I am having an issue. I keep getting the No Activity found to handle Intent error. I am trying to start a new activity with the button click.

I have looked at all the other answers and they were either very specific to the question as in, the answers did not apply to my question, or it was saying to make sure the activity names match, which mine do.

Manifest

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.madonk.louisiana.festivals"
    android:installLocation="auto"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">

        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>        
         </activity>

        <activity
            android:name=".Southwest"
            android:label="@string/title_activity_southwest" >

        </activity>

    </application>

</manifest>

MainActivity

package com.madonk.louisiana.festivals;

import android.os.Bundle; 
import android.app.Activity; 
import android.content.Intent; 
import android.view.Menu; 
import android.view.View; 
import android.widget.Button;

public class MainActivity extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

  Button southwest = (Button) findViewById(R.id.button_southwest);
  southwest.setOnClickListener(new View.OnClickListener() {

      public void onClick(View v) {
          // TODO Auto-generated method stub
          startActivity(new Intent());            }       });
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
} }

LogCat

    07-22 21:08:35.179: E/AndroidRuntime(470): FATAL EXCEPTION: main
07-22 21:08:35.179: E/AndroidRuntime(470): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=.Southwest }
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1409)
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.app.Instrumentation.execStartActivity(Instrumentation.java:1379)
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.app.Activity.startActivityForResult(Activity.java:2827)
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.app.Activity.startActivity(Activity.java:2933)
07-22 21:08:35.179: E/AndroidRuntime(470):  at com.madonk.louisiana.festivals.MainActivity$1.onClick(MainActivity.java:22)
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.view.View.performClick(View.java:2485)
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.view.View$PerformClick.run(View.java:9080)
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.os.Handler.handleCallback(Handler.java:587)
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.os.Handler.dispatchMessage(Handler.java:92)
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.os.Looper.loop(Looper.java:123)
07-22 21:08:35.179: E/AndroidRuntime(470):  at android.app.ActivityThread.main(ActivityThread.java:3683)
07-22 21:08:35.179: E/AndroidRuntime(470):  at java.lang.reflect.Method.invokeNative(Native Method)
07-22 21:08:35.179: E/AndroidRuntime(470):  at java.lang.reflect.Method.invoke(Method.java:507)
07-22 21:08:35.179: E/AndroidRuntime(470):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
07-22 21:08:35.179: E/AndroidRuntime(470):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
07-22 21:08:35.179: E/AndroidRuntime(470):  at dalvik.system.NativeStart.main(Native Method)
  • 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-08T06:51:43+00:00Added an answer on June 8, 2026 at 6:51 am

    You did not show the source code for where you are starting the activity. Based on the LogCat output, my guess is that you are trying:

    startActivity(new Intent(".Southwest"));
    

    Instead, use:

    startActivity(new Intent(this, Southwest.class));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm pretty new to android development, and I've been having some problems getting my
I'm pretty new to the Android scene and I'm having troubles creating an UI
I'm having an issue trying to build a JSONArray in android that has more
still pretty new to android I have to clone an iphone application. Im having
So I'm pretty new to android development and have been trying to piece together
im pretty new to android and im trying to add a number of edittexts
I'm pretty new to Android dev and still working out a lot of things.
I am pretty new to android app development and java and I encountered the
I'm pretty new to Android programming so bear with me. I was wondering if
I'm new to Android dev. There's a very pretty state diagram of the MediaPlayer

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.