作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过适配器通过 URL 将图像加载到我的 ListView,但 AQuery 似乎没有将 URL 加载到 ImageView。我曾尝试使用 Picasso Image Loader 执行此操作并且它有效但我更喜欢 AQuery 并且我需要解决此问题。我正在使用 Android Studio。
public class FeedAdapter extends ArrayAdapter<ActivityTable> {
ArrayList<ActivityTable> activities = new ArrayList<ActivityTable>();
Context ctx;
int resource;
AQuery aq;
public FeedAdapter(Context context, int resource, ArrayList<ActivityTable> activityList) {
super(context, resource, activityList);
this.activities = activityList;
this.ctx = context;
this.resource = resource;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi;
vi = LayoutInflater.from(getContext());
v = vi.inflate(R.layout.newsfeed_single, null);
}
ActivityTable p = new ActivityTable(); //Object of type ActivityTable
for(ActivityTable item: activities) {
p = activities.get(position);
}
if (p != null) {
TextView owner_text = (TextView) v.findViewById(R.id.post_owner);
ImageView post_picture = (ImageView) v.findViewById(R.id.post_media);
owner_text.setText(p.getUser().getFname());
AQuery aq = new AQuery(ctx);
aq.id(R.id.post_media).image(p.getURL()); //getURL() Returns the Image URL
//The URL is valid and I checked whether it works through Picasso Image Loader
}
return v;
}
}
应用程序在 ListView 中正确加载“名称”字段,但在 ImageView 中留下空白。我做错了什么?
最佳答案
使用picasso到Android的图像下载和缓存库
关于android - AQuery 不会在 Android Studio 中加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30309839/
我正在开发一个需要能够平均三个数字的 Facebook 应用程序。但是,它总是返回 0 作为答案。这是我的代码: $y = 100; $n = 250; $m = 300; $number = ($y
我只是无法弄清楚这一点,也找不到任何对我来说有意义的类似问题。我的问题:我从数据库中提取记录,并在我的网页上以每个面板 12 条的倍数显示它们。因此,我需要知道有多少个面板可以使用 JavaScrip
我是一名优秀的程序员,十分优秀!