我需要将自定义视图用于TabHost的指示器。在Android API级别> = 4时没有问题,但在Android API级别
我当时正在考虑实现此方法,但是不幸的是,TabHost类不允许更改,因为所有属性均为私有且未受保护。

谢谢。

最佳答案

我建议使用反射:

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));
    }
}

07-27 13:39