在Android API级别< 4上缺少TabSpec.setIndicator(View视图)的解决方法

时间:2010-09-01 13:32:55

标签: android android-tabhost

我需要将自定义视图用于TabHost的指示器。使用Android API级别> = 4没问题,但在Android API级别< 4中,此方法未实现。有什么建议吗?

我正在考虑实现此方法但不幸的是TabHost类不允许更改,因为所有属性都是私有的而不受保护。

感谢。

1 个答案:

答案 0 :(得分:2)

我建议使用反射:

private void setIndecator(TabHost.TabSpec tabSpec, String label) {
    LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    LinearLayout tabView = (LinearLayout) vi.inflate(R.layout.tab_view, null);
    ((TextView)tabView.findViewById(R.id.tabCaption)).setText(label);
    try {
        Method m = tabSpec.getClass().getMethod("setIndicator", View.class);
        m.invoke(tabSpec, tabView);
    } catch (Exception e) {
        //in case if platform 1.5 or via other problems indicator cannot be set as view
        //we have to set as just simple label.
        tabSpec.setIndicator(label, getResources().getDrawable(R.layout.tab_selector));
    }
}