Android开发UI之Fragment-Tabbed Activity的使用

时间:2022-08-17 06:40:07

使用ADT新建的时候,可以选择Tabbed Activity,选择新建一个工程。

新建的工程中,选择不同的Tab页显示不同的内容,主要是通过SectionsPagerAdapter类中的Fragment getItem(int position)方法实现的。

Tabbed Activity快速使用:

1.假如是3个Tab页,在工程中新建三个Fragment,显示想要显示的内容

2.找到SectionsPagerAdapter类,在Fragment getItem(int position)方法中,可以使用switch语句,根据不同的position,显示不同的Fragment。

         @Override
public Fragment getItem(int position) {
// getItem is called to instantiate the fragment for the given page.
// Return a PlaceholderFragment (defined as a static inner class
// below).
switch (position) {
case 0:
return new Img1Fragment();
case 1: return new Img2Fragment();
case 2: return new Img3Fragment(); }
return null;
}

以上就可以新建一个带有Tabbed的Activity了