gpt4 book ai didi

android - 无法为 1.13.0 版本的 SDK 导入 ParseImageView、ParseQueryAdapter

转载 作者:行者123 更新时间:2023-11-30 01:31:36 26 4
gpt4 key购买 nike

我尝试使用下面的代码导入 com.parse.ParseImageViewcom.parse.ParseQueryAdapter。但它显示此错误:

错误:(26, 13)
解析失败:com.parse:parseui-login-android:0.0.1
错误:(27, 13)
解析失败:com.parse:parseui-widget-android:0.0.1

package com.example.satti.party;

import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import com.parse.ParseFile;
import com.parse.ParseImageView;
import com.parse.ParseObject;
import com.parse.ParseQuery;
import com.parse.ParseQueryAdapter;




public class customadp extends ParseQueryAdapter<ParseObject> {

public customadp(Context context) {
// Use the QueryFactory to construct a PQA that will only show
// Todos marked as high-pri
super(context, new ParseQueryAdapter.QueryFactory<ParseObject>() {
public ParseQuery create() {
ParseQuery query = new ParseQuery("city");
query.whereEqualTo("highPri", true);
return query;
}
});
}

// Customize the layout by overriding getItemView
@Override
public View getItemView(ParseObject object, View v, ViewGroup parent) {
if (v == null) {
v = View.inflate(getContext(), R.layout.actvity_priest1, null);
}

super.getItemView(object, v, parent);

// Add and download the image
ParseImageView todoImage = (ParseImageView) v.findViewById(R.id.icon);
ParseFile imageFile = object.getParseFile("image");
if (imageFile != null) {
todoImage.setParseFile(imageFile);
todoImage.loadInBackground();
}

// Add the title view
TextView titleTextView = (TextView) v.findViewById(R.id.txt);
titleTextView.setText(object.getString("title"));

// Add a reminder of how long this item has been outstanding
TextView timestampView = (TextView) v.findViewById(R.id.cur);
timestampView.setText(object.getCreatedAt().toString());
return v;
}

}

最佳答案

在 dependencies 标签下添加 gradle build 文件:

compile 'com.parse:parseui-widget-android:0.0.1',
compile 'com.parse:parseui-login-android:0.0.1'

关于android - 无法为 1.13.0 版本的 SDK 导入 ParseImageView、ParseQueryAdapter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35687196/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com