gpt4 book ai didi

java - 2 个 fragment 之间的 Intent 不起作用

转载 作者:行者123 更新时间:2023-12-02 02:59:25 25 4
gpt4 key购买 nike

我在我的应用程序中使用 Fragments。其中一个有一个 listView,当我执行 setOnItemClickListener 时,我想将单击的项目传递给另一个 fragment ......这是我执行 Intent 的 OngletCours 类:

   l1.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
Intent a = new Intent(getActivity(), OngletNotes.class);


startActivity(a);
}

});


return rootView;
}

当我尝试执行 Intent 去另一个 fragment 时,出现以下错误:

E/AndroidRuntime: FATAL EXCEPTION: main
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.dasilvadd.students/com.example.dasilvadd.students.OngletNotes}; have you declared this activity in your AndroidManifest.xml?

这是我的 Manifest.xml

<?xml version="1.0" encoding="utf-8"?>

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

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Inscription"
android:label="Student" />
<activity
android:name=".Onglets"

android:label="Student"
android:theme="@style/AppTheme.NoActionBar" />
<activity android:name=".Reglages" />
<activity android:name=".MotDePasse" />



<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />

</application>

我已经尝试自己添加它,但它无法识别我为第二个 fragment (OngletNotes) 创建的类。

请告诉我如何解决这个问题。提前谢谢您!

最佳答案

如果您使用startActivity启动OngletNotes,我假设它是一个Activity。在这种情况下,您需要将其添加到 AndroidManifest.xml

<activity
android:name=".OngletNotes"
android:label="Notes" />

如果 OngletNotes 是一个 Fragment,它应该放在 Activity 内部。如果没有 Activity,您无法启动独立的 Fragment。

  1. 您需要创建一个 Activity(不要忘记将其放入 AndroidManifest.xml 中)

  2. 将 Fragment 放入 Activity 内(以 xml 或编程方式)

  3. 使用startActivity启动Activity

关于java - 2 个 fragment 之间的 Intent 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42577386/

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