gpt4 book ai didi

android - Aquery图片进度条无法隐藏

转载 作者:太空宇宙 更新时间:2023-11-03 13:22:01 26 4
gpt4 key购买 nike

我正在尝试使用 android 查询库在列表适配器中加载图像,我的问题是在图像完全加载后进度正在显示但并未消失

我遵循了查询文档

看到这个

String imageUrl = "http://farm6.static.flickr.com/5035/5802797131_a729dac808_b.jpg";            
aq.id(R.id.image).progress(R.id.progress).image(imageUrl, false, false);

和布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="100dip"
>

<ProgressBar
android:layout_width="15dip"
android:layout_height="15dip"
android:id="@+id/progress"
android:layout_centerInParent="true"
/>

<ImageView
android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="75dip"
/>

</RelativeLayout>

在我的代码中它就像

  public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
holder = new ViewHolder();
convertView = mInflater.inflate(
R.layout.galleryitem, null);
holder.imageview = (ImageView) convertView.findViewById(R.id.thumbImage);

convertView.setTag(holder);
}
else {
holder = (ViewHolder) convertView.getTag();
}

holder.imageview.setId(position);

holder.checkbox.setVisibility(View.GONE);
holder.imageview.setOnClickListener(new OnClickListener() {

public void onClick(View v) {
// TODO Auto-generated method stub
int id = v.getId();
Intent ia = new Intent(getApplicationContext(),PreviewImage.class);
ia.putExtra("url",id);
startActivity(ia);

}
});

AQuery aq = new AQuery(convertView);

try{
aq.id(holder.imageview).image(arrPath[position]).progress(R.id.progress);
}
catch(Exception e)
{}

holder.id = position;
return convertView;
}
}

最佳答案

用这个

aq.id(holder.imageview).progress(R.id.progress).image(arrPath[position], false, false);

关于android - Aquery图片进度条无法隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26502719/

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