2
Hello, I created a Data Input Activity and another one of "Result", when the button event is activated, to perform the calculations and open the Result Activity, the error appears that it was not declared in the manifest. Anyone can help?
My Manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uerj.normal">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Menu_Principal">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Entrada_Dados">
<activity android:name=".Resultado" />
</activity>
</application>
</manifest>
A Activity Upshot is in the same package of Main menu?
– ramaral
Forgive my lack of knowledge, but I could explain it better?
– Ana Waldila
Se Activity Upshot is in the same "folder" of Main menu?
– ramaral
Yes, it is. " Uerj.normal"
– Ana Waldila
There are the classes.
– Ana Waldila