我有一个水平滚动视图,其中包含图像数组列表和滚动视图下方的文本字段,我如何在水平滚动视图中更改图像时更改文本。
For Example: If the image will show image2 the text will also texted with text2 next when i will scroll the image2 to image3 the text will also move from text2 to text3
这里图像只会滚动,文本视图将保持固定,它只会用图像更改名称
我已经尝试了所有可能性,但我没有得到:
在这里,我在放置图像的视图项目中使用了适配器类:
public View getView(int position, View convertView, ViewGroup parent) {
vi=convertView;
if(convertView==null){
vi = LayoutInflater.from(parent.getContext()).inflate(R.layout.screen, null);
position_pin = position;
Holder.images=(ImageView) vi.findViewById(R.id.image);
Holder.textview=(TextView) vi.findViewById(R.id.name);
Holder.images.setImageResource(imageIds[position]);
Holder.text.setText(name);//here name is String
vi.setTag(Holder);
}
return vi;
}