gpt4 book ai didi

android - 为什么从MainActivity到AnotherActivity的 Intent 不起作用?

转载 作者:行者123 更新时间:2023-12-03 17:16:47 26 4
gpt4 key购买 nike

我在MainActivity java文件中调用下一个函数后,应用程序便崩溃了。
这是MainActivityAnotherActivity源代码。

最佳答案

在你的Manifest.xml
添加AnotherActivity

 <application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

如果 Activity 不在此文件中,则无法启动。

关于android - 为什么从MainActivity到AnotherActivity的 Intent 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36532833/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com