android 多个类的对象,android – 为多个对象使用泛型类(actionBar选项卡)

目前我使用ABS,ActionBar Tabs和TabsAdapter / ViewPager为我的应用程序制作一个漂亮的标签布局.我有5个类别标签 – 最终用户将能够添加新类别(我稍后会设置它).所以,目前,我有一个主要的SherlockFragmentActivity和许多SherlockFragment类别文件.在主要SFA的onCreate中,我构建了actionBar并添加了所有选项卡,如下所示:

mTabsAdapter.addTab(bar.newTab().setText(R.string.login),

LoginFragment.class, null);

mTabsAdapter.addTab(bar.newTab().setText("Geographics"),

GeoFragment.class, null);

mTabsAdapter.addTab(bar.newTab().setText(R.string.economics),

EconFragment.class, null);

mTabsAdapter.addTab(bar.newTab().setText(R.string.elections),

ElectionsFragment.class, null);

我想做的是创建一个新的解决方案,CategoryFragment而不是使用所有特定的选举,Geo,Econ等.任何人都可以想象一个解决方案吗?理想情况下,我想将一个字符串传递给添加的选项卡,以便CategoryFragment可以根据字符串进行膨胀.我想要这个解决方案,因为代码在多个类中是非常冗余的,当所有类真正做的是从SQL db在线加载东西时,只获取自己类别的数据.

这是我的TabsAdapter类:

public class TabsAdapter extends FragmentPagerAdapter

implements ActionBar.TabListener, ViewPager.OnPageChangeListener {

private final Context mContext;

private Polling activity;

private final ActionBar mActionBar;

private final ViewPager mViewPager;

private final ArrayList mTabs = new ArrayList();

final class TabInfo {

private final Class> clss;

private final Bundle args;

//private final String title;

//This string is implemented only as part of my attempt!

TabInfo(Class> _class, Bundle _args, String _title) {

clss = _class;

args = _args;

title = _title;

}

}

/*Constructor method that adds a TabsAdapter to each tab that is created.

* It also adds the ViewPager to each tab so that the user can swipe to change tabs.

*/

public TabsAdapter(SherlockFragmentActivity activity, ViewPager pager) {

super(activity.getSupportFragmentManager());

mContext = activity;

this.activity = (Polling) activity;

mActionBar = activity.getSupportActionBar();

mViewPager = pager;

mViewPager.setAdapter(this);

mViewPager.setOnPageChangeListener(this);

}

/*This is the method I've been trying to use to solve the problem, but it's not really cutting it!*/

public void buildTabs() throws ClassNotFoundException {

String [] tabs = {"Econ", "Elections", "Geo", "Politics", "Science", "Finance", "Religion",

"Military", "International" };

final String resource = "R.string.";

mTabsAdapter.addTab(bar.newTab().setText("Login"),

LoginFragment.class, null, "Login");

for (int j = 0; j < tabs.length; j++) {

String res = resource + tabs[j];

String clas = tabs[j] + "Fragment";

String total = "com.davekelley.polling." + clas;

mTabsAdapter.addTab(bar.newTab().setText(tabs[j]),

CategoryFragment.class, null, tabs[j]);

}

}

/*A fairly simple method that sets the TabInfo for each tab so that the TabsAdapter

* knows which class the tab that is being added actually belonds to. It also updates

* the UI interface when each tab is added.

*/

public void addTab(ActionBar.Tab tab, Class> clss, Bundle args, String title) {

TabInfo info = new TabInfo(clss, args, title);

tab.setTag(info);

tab.setTabListener(this);

mTabs.add(info);

mActionBar.addTab(tab);

notifyDataSetChanged();

}

public int getCount() {

return mTabs.size();

}

/*A method that is used in other classes to allow each tab Fragment to

* access its inherited methods from a mother-class, in this case, SherlockFragment

*/

public int getPosition(SherlockFragment fragment) {

for (int j = 1; j < mTabs.size(); j++) {

TabInfo info = (TabInfo) mActionBar.getTabAt(j).getTag();

if (info.title.matches(mTabs.get(j).title)) {

return j;

}

}

return -1;

}

public SherlockFragment getItem(int position) {

TabInfo info = mTabs.get(position);

return (SherlockFragment)Fragment.instantiate(mContext, info.clss.getName(), info.args);

}

/*This method reads the user's selection for a new tab and sets that tab as

* the new current focus.*/

public void onPageSelected(int position) {

mActionBar.setSelectedNavigationItem(position);

selectInSpinnerIfPresent(position, true);

}

private void selectInSpinnerIfPresent(int position, boolean animate) {

try {

View actionBarView = findViewById(R.id.abs__action_bar);

if (actionBarView == null) {

int id = getResources().getIdentifier("action_bar", "id", "android");

actionBarView = findViewById(id);

}

Class> actionBarViewClass = actionBarView.getClass();

Field mTabScrollViewField = actionBarViewClass.getDeclaredField("mTabScrollView");

mTabScrollViewField.setAccessible(true);

Object mTabScrollView = mTabScrollViewField.get(actionBarView);

if (mTabScrollView == null) {

return;

}

Field mTabSpinnerField = mTabScrollView.getClass().getDeclaredField("mTabSpinner");

mTabSpinnerField.setAccessible(true);

Object mTabSpinner = mTabSpinnerField.get(mTabScrollView);

if (mTabSpinner == null) {

return;

}

Method setSelectionMethod = mTabSpinner.getClass().getSuperclass().getDeclaredMethod("setSelection", Integer.TYPE, Boolean.TYPE);

setSelectionMethod.invoke(mTabSpinner, position, animate);

} catch (IllegalArgumentException e) {

e.printStackTrace();

} catch (IllegalAccessException e) {

e.printStackTrace();

} catch (NoSuchFieldException e) {

e.printStackTrace();

} catch (NoSuchMethodException e) {

e.printStackTrace();

} catch (InvocationTargetException e) {

e.printStackTrace();

}

}

public void onPageScrollStateChanged(int state) {}

public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {}

/* This is the method that actually draws the newest tab onto the screen when

* it is selected.*/

public void onTabSelected(Tab tab, FragmentTransaction ft) {

mViewPager.setCurrentItem(tab.getPosition());

sp = getSharedPreferences("prefs", MODE_PRIVATE);

SharedPreferences.Editor preferencesEditor = sp.edit();

preferencesEditor.putInt("lastPosition", mViewPager.getCurrentItem());

preferencesEditor.commit();

}

public void onTabUnselected(Tab tab, FragmentTransaction ft) {}

public void onTabReselected(Tab tab, FragmentTransaction ft) {}

public void onTabReselected(Tab tab, android.app.FragmentTransaction ft) {}

public void onTabUnselected(Tab tab, android.app.FragmentTransaction ft) {}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值