我跟着http://developer.android.com/guide/topics/ui/actionbar.html#Tabs
它使用以下代码添加选项卡。
Tab tab = actionBar.newTab()
.setText(R.string.artist)
.setTabListener(new TabListener<ArtistFragment>(
this, "artist", ArtistFragment.class));
actionBar.addTab(tab);
我想在第一次显示选项卡之前为片段的构造函数提供参数或在片段实例上调用 myInit(myVariableList) 方法。
我怎样才能做到这一点?