0

我有一个水平滚动视图,其中包含图像数组列表和滚动视图下方的文本字段,我如何在水平滚动视图中更改图像时更改文本。

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;
            }
4

2 回答 2

0

实现滚动视图侦听器并根据我们可以显示文本的位置获取位置..

ExampleScrollView exampleScrollView = (ExampleScrollView) findViewById(R.id.example_scroll_view);

示例ScrollView.setOnScrollViewListener(新的OnScrollViewListener(){

public void onScrollChanged( ExampleScrollView v, int l, int t, int oldl, int oldt ) { 
    Log.d( "Scroller", "I changed!" ); 
} 

});

于 2013-03-22T06:09:46.103 回答
0

只需将标题寻呼机指示器与视图寻呼机集成。

  ViewPager viewPager = (ViewPager) findViewById(R.id.view_pager);
ImagePagerAdapter adapter = new ImagePagerAdapter();
viewPager.setAdapter(adapter);
TitlePageIndicator titleIndicator = (TitlePageIndicator)findViewById(R.id.titles);
titleIndicator.setViewPager(viewPager);

您可以在https://github.com/JakeWharton/Android-ViewPagerIndicator找到标题寻呼机指示器的库项目

于 2013-03-22T06:25:40.493 回答