我正在编写一个 android 应用程序,它有一个活动,其中包含几个片段。现在我想知道有没有办法将该活动拆分为多个文件 - 为每个片段设置单独的文件?
为了让我的问题更清楚,这里是我的活动结构
public class MainActivity extends Activity implements ActionBar.TabListener
{
@Override
public Fragment getItem(int position) {
switch(position)
{
case 0:
return new Fragment1();
case 1:
return new Fragment2();
case 2:
return new Fragment3();
case 3:
return new Fragment4();
}
}
public static class Fragment1 extends Fragment {}
public static class Fragment2 extends Fragment {}
public static class Fragment3 extends Fragment {}
public static class Fragment4 extends Fragment {}
}
先感谢您!