我有一个水平滚动视图,其中包含图像数组列表和滚动视图下方的文本字段,我如何在水平滚动视图中更改图像时更改文本。
For Example: The image will show Mountain the text will also texted with mountain
这里图像只会滚动,文本视图将保持固定,它只会用图像更改名称
我已经使用下面的代码滚动图像,它工作正常,图像正在改变但文本视图没有改变!
任何人都可以帮助我!@提前致谢
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);
vi.setTag(Holder);
}
return vi;
}
If you have any better option or code then help me.