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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:09:00+00:00 2026-06-04T01:09:00+00:00

SOLUTION: <activity android:name=.Specials android:label=@string/app_name > <intent-filter> <action android:name=com.kita.MyGardenCenterApp.SPECIALS /> <category android:name=android.intent.category.DEFAULT /> </intent-filter> </activity>

  • 0

SOLUTION:

 <activity
        android:name=".Specials"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="com.kita.MyGardenCenterApp.SPECIALS" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

OK the infamous “No Activity Found” error.

Button:

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

        public void onClick(View v) {
            // TODO Auto-generated method stub
            startActivity(new Intent("com.kita.MyGardenCenterApp.SPECIALS")); 
        }
    });

Manifest:

<activity
        android:label="@string/app_name"
        android:name=".Specials" >
        <intent-filter >
            <action android:name="android.intent.action.SPECIALS" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

Log Cat:

05-16 09:44:50.149: E/AndroidRuntime(17747): FATAL EXCEPTION: main
05-16 09:44:50.149: E/AndroidRuntime(17747): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.kita.MyGardenCenterApp.SPECIALS }
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1408)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.app.Instrumentation.execStartActivity(Instrumentation.java:1378)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.app.Activity.startActivityFromChild(Activity.java:3057)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.app.Activity.startActivityForResult(Activity.java:2837)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.app.Activity.startActivity(Activity.java:2923)
05-16 09:44:50.149: E/AndroidRuntime(17747): at com.kita.MyGardenCenterApp.Home_Page$1.onClick(Home_Page.java:49)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.view.View.performClick(View.java:2408)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.view.View$PerformClick.run(View.java:8816)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.os.Handler.handleCallback(Handler.java:587)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.os.Handler.dispatchMessage(Handler.java:92)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.os.Looper.loop(Looper.java:123)
05-16 09:44:50.149: E/AndroidRuntime(17747): at android.app.ActivityThread.main(ActivityThread.java:4627)
05-16 09:44:50.149: E/AndroidRuntime(17747): at java.lang.reflect.Method.invokeNative(Native Method)
05-16 09:44:50.149: E/AndroidRuntime(17747): at java.lang.reflect.Method.invoke(Method.java:521)
05-16 09:44:50.149: E/AndroidRuntime(17747): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:893)
05-16 09:44:50.149: E/AndroidRuntime(17747): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:651)
05-16 09:44:50.149: E/AndroidRuntime(17747): at dalvik.system.NativeStart.main(Native Method)

EDIT:

In response to some of your answers, I have another app that uses the the following code and it is working fine. This is why I am on here asking. I want to do this the right way.

Also my .java file is Specials.java

<activity
        android:label="@string/app_name"
        android:name=".mainAboutUs" >
        <intent-filter >
            <action android:name="com.kita.PapaStew.MAINABOUTUS" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

ADDING FULL MANIFEST

<?xml version="1.0" encoding="utf-8"?>

<permission
    android:name="com.kita.MyGardenCenterApp.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />

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

<uses-permission android:name="com.kita.MyGardenCenterApp.permission.C2D_MESSAGE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />

<application
    android:name="StoredValues"
    android:icon="@drawable/icon"
    android:label="@string/app_name" >
    <uses-library android:name="com.google.android.maps" />

    <service android:name=".C2DMReceiver" />

    <receiver
        android:name="C2DMReceiver"
        android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />

            <category android:name="com.kita.MyGardenCenterApp" />
        </intent-filter>
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

            <category android:name="com.kita.MyGardenCenterApp" />
        </intent-filter>
    </receiver>

    <activity
        android:name=".MyGardenCenterAppActivity"
        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=".myTabbar"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="com.kita.MyGardenCenterApp.MYTABBAR" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Home_Page"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.HOMEPAGE" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Notification"
        android:label="@string/app_name"
        android:windowSoftInputMode="stateHidden" >
        <intent-filter>
            <action android:name="android.intent.action.NOTIFICATION" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Calendar"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.CALENDAR" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Facebook"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.FACEBOOK" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Map_Activity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAPACTIVITY" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".More"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MORE" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Twitter"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.TWITTER" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Website"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.WEBSITE" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Google_Plus"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.GOOGLEPLUS" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Notes"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.NOTES" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Feedback"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.FEEDBACK" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
    android:name="com.kita.MyGardenCenterApp.SPECIALS"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="com.kita.MyGardenCenterApp.SPECIALS" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
    <activity
        android:name=".Ask_the_Expert"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.ASKTHEEXPERT" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Tips"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.TIPS" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Just_In"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.JUSTIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Calulators"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.CALCULATORS" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</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-06-04T01:09:02+00:00Added an answer on June 4, 2026 at 1:09 am

    use this

          <intent-filter>
                <action android:name="com.kita.MyGardenCenterApp.SPECIALS" />
    
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How we can Read Activity name from logcat in Android? I used some code
I am refering to http://developer.android.com/reference/android/app/Activity.html . I have an activity which can be interrupted
I have an Android application with a main activity that is the tabhost. I'm
I was following this example: http://developer.android.com/resources/tutorials/views/hello-autocomplete.html And I want to know how I can
I'm experiencing some problems regarding Twitter OAuth within an android activity. I read a
I just set up eclipse to start android development according to this http://developer.android.com/sdk/installing.html .
I have an Android activity that, onCreate(), will query a database and display the
I am working on a form layout for a Login Activity in my Android
My code is as follows: package chapter.seven; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import
I am developing android application but i don't know how to integrate two 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.