PagerAdapter主要用於各個頁卡的滑動效果,這個數據源決定了如今顯示第幾個頁卡的內容。BaseAdapter通常用於每一個頁卡內容的填充。
一、PagerAdapter至少須要重寫的方法
html
getCount()
code
但經過API咱們能夠發現這個類有一下幾個方法
get
二、BaseAdapter至少須要重寫的方法
it
public
int
getCount()
io
public
Object getItem(
int
arg0)
方法
public
long
getItemId(
int
position)
developer
public
View getView(
int
position, View convertView, ViewGroup parent)