ActivityNotFoundException when trying to run the second action

I just started learning Android application programming, I follow the instructions on the basics of the official Android framework, but I don’t understand why I have a mistake, but I make an intention, and the application throws me this error.

public class MainActivity extends ActionBarActivity {

    public static final String EXTRA_MESSAGE = "com.panagetstudios.androidapp.MESSAGE";

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

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

    public void sendMessage(View view){
        Intent inte = new Intent(this, DisplayMessageActivity.class);
        EditText edittext = (EditText) findViewById(R.id.edit_message);
        String text = edittext.getText().toString();
        inte.putExtra(EXTRA_MESSAGE, text);
        startActivity(inte);
    }

}

This is my manifest file:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.panagetstudios.androidapp"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            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=".DisplayMessageActivity"
        android:label="@string/title_activity_display_message" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.panagetstudios.androidapp.MainActivity" />
        </activity>

    </application>

</manifest>

Please help me, I am lost, I can provide you with additional information if necessary.

Hi

+4
source share
3 answers

You must have the full package name for your activity:

<activity
    android:name="com.panagetstudios.androidapp.DisplayMessageActivity"
    android:label="@string/title_activity_display_message" >
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.panagetstudios.androidapp.MainActivity" />
    </activity>

also make sure your activity is in the src / com.panagetstudios.androidapp folder

0
source

<activity
    android:name=".DisplayMessageActivity"
    android:label="@string/title_activity_display_message" >
    <intent-filter>
            <action android:name="android.intent.action.DISPLAY" />

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

Ok guys, I just found a solution. I just started Eclipse as an administrator and restarted the project and it works correctly, thanks for the collaboration.

0
source

All Articles