如何使用android设置标签中心的标签栏图像?

时间:2013-11-22 09:23:44

标签: java android xml

这是我的代码。我是新手可以有人请帮助我如何在中心显示imageIcon就像测试出现在中心请让我知道如何使用android自定义标签栏图像。

protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                ActionBar bar = getActionBar();
                  bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
            bar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_USE_LOGO);
            String headerName[] = {"Info","Location","Discipline","Summary","Status", "Plus"};
            //int headerName[]={R.drawable.info,R.drawable.location,R.drawable.discipline,R.drawable.summary,R.drawable.status, R.drawable.plus};
            Log.i("log ", "1");
            for (int i=0; i < headerName.length; i++) {

                    Tab tab = bar.newTab();                        
                   // tab.setText(headerName[i]);
                 tab.setIcon(R.drawable.info);

                    tab.setTabListener(this);
                    bar.addTab(tab);
                    Log.i("log ", "" +i);
            }
    }

present output

最终的标签栏图像应显示在标签栏的蓝线上方以及中心位置。 图像应与屏幕中显示的标签栏文本相同 请帮我,如何制作自定义标签栏图像?

text tab bar

1 个答案:

答案 0 :(得分:0)

看看这篇文章:

How to customize android tabs or background change?

您可以简单地使用xml布局作为标签内容。

修改
当您使用ActionBar.Tab时,请查看以下内容:

http://developer.android.com/reference/android/app/ActionBar.Tab.html#setCustomView(int) http://www.lucazanini.eu/2012/android/customizing-the-labels-of-an-actionbar/