我是android的新手。我看过这个幻灯片,我喜欢它, 我不知道怎样才能做出这样的事情。
它有两个箭头,它每x秒改变一次图像。
我找不到像这样的图书馆。 你能帮我找一个图书馆或者做这样的事吗?
谢谢你
答案 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