当前位置: 首页 > 知识库问答 >
问题:

无法实例化片段确保类名存在

哈雅珺
2023-03-14
package com.paad.todolist;

import android.app.ListFragment;
import android.os.Bundle;

public class ToDoListFragment extends ListFragment{

    public static ToDoListFragment newInstance(int index) {
        ToDoListFragment f = new ToDoListFragment();

           Bundle args = new Bundle();
           args.putInt("index", index);
           f.setArguments(args);

           return f;
        }
    }

共有1个答案

殳阳飙
2023-03-14

我发现,你这个逻辑猫什么都说

 Caused by: java.lang.ClassNotFoundException: com.paad.todoList.ToDoListFragment

您的包名称不正确。使用com.paad.todolist而不是com.paad.todolist

这篇文章让我想起了电视节目中的对话,夏洛克:你看见但你不观察:):)

 类似资料: