我意识到针对同一错误发布了许多问题,但到目前为止,没有一个问题对我有帮助。我正在从一本书中学习,并且之前实际上已经运行过准确(99%正确)的代码。擦除所有内容并将其重写以进行检查后,出现了错误。

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;
        }
    }

LogCat:

最佳答案

发现了,您logcat说了一切

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

您的包裹名称不正确。使用 com.paad.todolist 代替 com.paad.todoList

这篇帖子让我想起了电视节目对话框,Sherlock:您看到但没有看到 :) :)

10-04 13:55