大家好,我是新来的。我正在尝试创建一个简单的文件选择器,我碰到了一个凹凸 这是我的问题
private Context c;
private int id;
private List<Option>items;
public FileArrayAdapter(Context context, int textViewResourceId,
List<Option> objects) {
super(context, textViewResourceId, objects);
c = context;
id = textViewResourceId;
items = objects;
}
}
它说:
the value of the field FileArrayAdapter.c is not used
the value of the field FileArrayAdapter.id is not used
the value of the field FileArrayAdapter.items is not used
我该怎么办?
答案 0 :(得分:0)
这是一条警告,表示您永远不会访问对象中的c
,id
和items
字段。您的应用程序仍应编译并运行正常。如果您计划在某些时候使用这些字段,则无需担心。如果没有,为什么它们首先存在?