带有标签的 Android 操作栏 Sherlock
Posted
技术标签:
【中文标题】带有标签的 Android 操作栏 Sherlock【英文标题】:Android Actionbar Sherlock with Tabs 【发布时间】:2012-11-18 09:30:19 【问题描述】:我正在尝试使用下面的选项卡来实现 ActionBar Sherlock,如上面的线框所示。
我应该使用 TabActivity 吗? - 因为我看到它已被弃用。这是实现相同目标的最佳方法。
【问题讨论】:
你能分享答案吗 【参考方案1】:我使用SherlockFragmentActivity
作为tabview 容器和SherlockFragment
作为选项卡实现了这个功能。这是一个草图(我省略了通常的 android 活动内容):
这是带有两个选项卡的 tabview 活动:
public class TabViewActivity extends SherlockFragmentActivity
// store the active tab here
public static String ACTIVE_TAB = "activeTab";
@Override
public void onCreate(Bundle savedInstanceState)
..
final ActionBar actionBar = getSupportActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
// add the first tab which is an instance of TabFragment1
Tab tab1 = actionBar.newTab()
.setText("TabTitle1")
.setTabListener(new TabListener<TabFragment1>(
this, "tab1", TabFragment1.class));
actionBar.addTab(tab1);
// add the second tab which is an instance of TabFragment2
Tab tab2 = actionBar.newTab()
.setText("TabTitle2")
.setTabListener(new TabListener<TabFragment2>(
this, "tab2", TabFragment2.class));
actionBar.addTab(tab2);
// check if there is a saved state to select active tab
if( savedInstanceState != null )
getSupportActionBar().setSelectedNavigationItem(
savedInstanceState.getInt(ACTIVE_TAB));
@Override
protected void onSaveInstanceState(Bundle outState)
// save active tab
outState.putInt(ACTIVE_TAB,
getSupportActionBar().getSelectedNavigationIndex());
super.onSaveInstanceState(outState);
这是包含标签内容的TabFragment
:
public class TabFragment extends SherlockFragment
// your member variables here
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState)
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_va_esh, container, false);
... // do your view initialization here
return view;
最后这是处理标签切换的TabListener
:
public class TabListener<T extends Fragment> implements ActionBar.TabListener
private TabFragment mFragment;
private final Activity mActivity;
private final String mTag;
private final Class<T> mClass;
public TabListener(Activity activity, String tag, Class<T> clz)
mActivity = activity;
mTag = tag;
mClass = clz;
public void onTabSelected(Tab tab, FragmentTransaction ft)
// Check if the fragment is already initialized
if (mFragment == null)
// If not, instantiate and add it to the activity
mFragment = (TabFragment) Fragment.instantiate(
mActivity, mClass.getName());
mFragment.setProviderId(mTag); // id for event provider
ft.add(android.R.id.content, mFragment, mTag);
else
// If it exists, simply attach it in order to show it
ft.attach(mFragment);
public void onTabUnselected(Tab tab, FragmentTransaction ft)
if (mFragment != null)
// Detach the fragment, because another one is being attached
ft.detach(mFragment);
public void onTabReselected(Tab tab, FragmentTransaction ft)
// User selected the already selected tab. Usually do nothing.
【讨论】:
我们如何将操作栏中的分享按钮添加到harsha mv 的问题中? @suresh:这是一个不同的问题。见this related question。 @MattHandy 我想添加选项卡以及 ActionBar Iteams。那么你的解决方案行得通吗? 这行得通。标签视图将显示在您的操作栏正下方。 @MattHandy:我在这一行遇到错误,告诉创建一个新的 ActionBar 类 ::::: public class TabListener我相信 TabActivity 已被弃用,而倾向于使用 Fragments —— 并不是因为标签导航是一个已弃用的概念。只需使用 Fragments 和 TabWidget。
另外,这里是a similar question。
编辑:
这是由 Google 提供的示例:Android Tabs the Fragment Way
【讨论】:
以上是关于带有标签的 Android 操作栏 Sherlock的主要内容,如果未能解决你的问题,请参考以下文章