我正在尝试使用“或”方法添加查询。
ParseQuery<ParseObject> myquery = new ParseQuery.or(allqueries);
但是当我写这行时,或者变成红色并显示“找不到符号或”。
虽然其他解析函数可以正常工作。
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation "com.github.parse-community.Parse-SDK-Android:parse:1.22.1"
implementation 'com.github.GrenderG:Toasty:1.4.2'
implementation 'com.google.android.material:material:1.0.0'
}`
答案 0 :(得分:0)
您正在访问静态方法,因此请删除new
关键字
将行替换为
ParseQuery myquery = ParseQuery.or(allqueries);