Back to project page soundheap.
The source code is released under:
Copyright (c) 2014, Nicholas Wertzberger All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are...
If you think the Android project soundheap listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ideaheap.sound.control; //w w w .j ava 2 s. c o m import com.actionbarsherlock.app.ActionBar; import com.actionbarsherlock.app.SherlockFragmentActivity; public class TabController { private final TabListener listener; private final SherlockFragmentActivity activity; private final int titleId; public TabController(SherlockFragmentActivity activity, int titleId, TabListener listener) { this.activity = activity; this.titleId = titleId; this.listener = listener; } public void buildTab() { ActionBar bar = activity.getSupportActionBar(); ActionBar.Tab project = bar.newTab().setText(titleId); project.setTabListener(listener); bar.addTab(project); } }