Unfortunately Project_Name Has Stopped

后端 未结 3 833
清酒与你
清酒与你 2021-01-25 03:20

I have a simple app that you enter text into the textview and press submit and it shows the text in another Activity. However, when I press submit, gives me the message \"Unfort

相关标签:
3条回答
  • 2021-01-25 03:28

    From your stack trace:

    Unable to find explicit activity class {com.point/com.point.DisplayMessageActivity}; 
    have you declared this activity in your AndroidManifest.xml?
    

    Have you?

    0 讨论(0)
  • 2021-01-25 03:31

    If you take a better look at the error log you'll see:

    Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.point/com.point.DisplayMessageActivity}; have you declared this activity in your AndroidManifest.xml?

    So, is your DisplayMessageActivity declared in the AndroidManifest.xml file?

    0 讨论(0)
  • 2021-01-25 03:38

    Add this to your manifest file under Application Tag:

    <activity android:name=".DisplayMessageActivity"></activity>
    
    0 讨论(0)
提交回复
热议问题