问题描述
我的当前设置:
- 操作系统:Windows 7
- IDE:机器人工作室(用更新的SDK)
- 解析罐(V 1.10)
我想出去ParseQueryAdapter一个例子,我在我的IDE遇到这个错误:进口com.parse.ParseQueryAdapter;
- > 不能解析符号ParseQueryAdapter
I am trying out an example for ParseQueryAdapter, and I run into this error on my IDE : import com.parse.ParseQueryAdapter;
-> cannot resolve symbol ParseQueryAdapter
我想尝试与此类似的东西,而导入
似乎并没有去,因为错误的通过。
I want to try something similar to this example, and the import
does not seem to go through because of the error.
如果你需要的信息了,请留下意见和放大器;我将作出回应。
If you need anymore information, please leave comments & I will respond.
PS:我能够添加 com.parse.ParseObject
没有错误
推荐答案
在您的libs文件夹,你会发现解析-1.4.1.jar文件。
右击或控制+点击它,然后点击添加为图书馆......
In your libs folder you'll find Parse-1.4.1.jar file.Right click or control+click on it then 'Add as Library...'
编辑:解析-1.10没有ParseQueryAdapter。必须使用解析-1.4.1,它包括在该例子。
Parse-1.10 does not have ParseQueryAdapter. You have to use Parse-1.4.1, which is included in that example.
这篇关于无法解析com.parse.ParseQueryAdapter的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!