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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T06:26:14+00:00 2026-06-11T06:26:14+00:00

I have been trying to go back to an activity after saving some data.

  • 0

I have been trying to go back to an activity after saving some data. The saving all works find. No errors there and all the streams are closed. Then I try to go back to the MainMenu activity and it seems not to work. Also something that I don’t know if it will effect it but if I created some TextFields in the class do I need to remove them before going to a new activity?

The Code for new activity in (“com.sureclean.versionioo.settings”):

public void onClick(View v) {
        //Saving data code in here
    startActivity(new Intent("com.sureclean.versionioo.MainMenu"));
}

Whole Manifest:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sureclean.versionioo"
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=".Splash"
        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=".MainMenu"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="com.sureclean.versionioo.MainMenu" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name=".checklist"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name=".checklist" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name=".settings"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="com.sureclean.versionioo.settings" />

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

LogCat:

09-12 15:58:03.949: E/AndroidRuntime(1079): FATAL EXCEPTION: main
09-12 15:58:03.949: E/AndroidRuntime(1079): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.surehere.versionioo.MAIN }
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1512)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.app.Instrumentation.execStartActivity(Instrumentation.java:1384)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.app.Activity.startActivityForResult(Activity.java:3190)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.app.Activity.startActivity(Activity.java:3297)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at com.sureclean.versionioo.settings$1.onClick(settings.java:54)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.view.View.performClick(View.java:3511)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.view.View$PerformClick.run(View.java:14105)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.os.Handler.handleCallback(Handler.java:605)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.os.Handler.dispatchMessage(Handler.java:92)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.os.Looper.loop(Looper.java:137)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at android.app.ActivityThread.main(ActivityThread.java:4424)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at java.lang.reflect.Method.invokeNative(Native Method)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at java.lang.reflect.Method.invoke(Method.java:511)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
09-12 15:58:03.949: E/AndroidRuntime(1079):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
09-12 15:58:03.949: E/AndroidRuntime(1079):     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-11T06:26:16+00:00Added an answer on June 11, 2026 at 6:26 am

    If this activity is exists in package defined in manifest …You can write android:name=”.MainMenu”

    but if package name is others so write full name

    android:name=”yourpackagename.MainMenu”

    Use this manifest once

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.sureclean.versionioo"
        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=".Splash"
                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=".MainMenu"
                android:label="@string/title_activity_main" >
            </activity>
            <activity
                android:name=".checklist"
                android:label="@string/title_activity_main" >
            </activity>
            <activity
                android:name=".settings"
                android:label="@string/title_activity_main" >
            </activity>
        </application>
    

    and in button onclick

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

Sidebar

Related Questions

I have been trying out the MoreLikeThis Bundle to bring back a set of
I have been to the end of the internet and back trying to solve
I have been trying to setup git for our web development team unsuccessfully. Some
I have been trying to receive a data packet from a client however during
I have been trying to find ways to make the following piece of code
I have been trying to write some Java bytecode and assemble it using Jasmin.
I have been trying to bring back 20 results of images using the Bing
I have been trying to pull all infomation where $user is equal to subscriberID
Have been trying to encrypt an xml file to a string so that I
Have have been trying to make a validator for my xml files. I have

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.