如何在简介滑块中的布局中显示直接图像而不是图像

时间:2016-06-23 13:02:51

标签: java android

我想在我的介绍滑块中显示三个屏幕,现在我正在通过显示三个布局来如何直接显示不使用布局的图像。以下是我的代码

public class MyViewPagerAdapter extends PagerAdapter {
        private LayoutInflater layoutInflater;

        public MyViewPagerAdapter() {
        }

        @Override
        public Object instantiateItem(ViewGroup container, int position) {
            layoutInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);

            View view = layoutInflater.inflate(layouts[position], container, false);
            container.addView(view);

            return view;
        }
   layouts = new int[]{
                R.layout.welcome_slide1,
                R.layout.welcome_slide2,
                R.layout.welcome_slide3};

1 个答案:

答案 0 :(得分:0)

 @Override
public Object instantiateItem(ViewGroup container, int position) {
  ImageView iv = new ImageView(context);
  iv.setImageResource(images[position]);
  container.addView(iv);
  return iv;
}