android-如何制作这样的幻灯片

时间:2014-09-01 07:55:24

标签: android android-imageview android-gallery android-library

我是android的新手。我看过这个幻灯片,我喜欢它, 我不知道怎样才能做出这样的事情。 enter image description here

它有两个箭头,它每x秒改变一次图像。

我找不到像这样的图书馆。 你能帮我找一个图书馆或者做这样的事吗?

谢谢你

1 个答案:

答案 0 :(得分:3)

              ViewPagerAdapter adapter = new ViewPagerAdapter(MainActivity.this,SIZE);
           myPager = (ViewPager) findViewById(R.id.yourViewPager);
              myPager.setAdapter(adapter);
              myPager.setCurrentItem(0);

              // Timer for automatic sliding
              timer  = new Timer();
              timer.schedule(new TimerTask() {
            @Override
            public void run() {
                runOnUiThread(new Runnable() {
                    @Override
                    public void run() {
                        if(count<= SIZE){
                              myPager.setCurrentItem(count);
                              count++;
                              }else{
                                     count = 0;
                                     myPager.setCurrentItem(count);
                              }
                    }
                });
            }
        }, 100, 1000);
       }

了解更多详情

http://saurabhsharma123k.blogspot.in/2014/03/viewpager-for-horizental-screen-slides.html